together-dockerfiles/nginx/Dockerfile

4 lines
95 B
Docker

FROM nginx
EXPOSE 80
COPY ./nginx.conf /etc/nginx/nginx.conf
CMD ["nginx", "-g", "daemon off;"]