FROM ubuntu:latest RUN apt-get update --no-cache RUN apt-get install -y nginx VOLUME /var/www/html/ ENTRYPOINT ["nginx", "-g", "daemon off;"]