FROM nginx WORKDIR /usr/share/nginx/html/ RUN mkdir -p /usr/share/nginx/html/ RUN ls -ls COPY ./html /usr/share/nginx/html/ COPY ./nginx.conf /etc/nginx/conf.d/default.conf CMD ["nginx", "-g", "daemon off;"]