pixelated.sh/Dockerfile

13 lines
193 B
Docker
Raw Normal View History

FROM ubuntu:latest
RUN apt update && apt install nginx python3 -y
RUN rm -rf /etc/nginx/sites-enabled/default
ADD nginx/ /etc/nginx/
ADD www/ /var/html/www/
EXPOSE 80
ENTRYPOINT ["nginx"]