Skip to content

Instantly share code, notes, and snippets.

@voa2000
Forked from bmwitcher/Dockerfile
Created November 18, 2021 07:44
Show Gist options
  • Save voa2000/620e04f5b12018216b457e4288608e9f to your computer and use it in GitHub Desktop.
Save voa2000/620e04f5b12018216b457e4288608e9f to your computer and use it in GitHub Desktop.
FROM ubuntu
RUN apt-get update
RUN apt-get install nginx -y
COPY index.html /var/www/html/
EXPOSE 80
CMD ["nginx","-g","daemon off;"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment