Skip to content

Instantly share code, notes, and snippets.

@raLaaaa
raLaaaa / Dockerfile
Created December 7, 2021 11:06
Dockerfile for static HTML
FROM ubuntu
RUN apt-get update
RUN apt-get install nginx -y
COPY . /var/www/html/
EXPOSE 80
CMD ["nginx","-g","daemon off;"]