together-dockerfiles/nginx/Dockerfile

4 lines
95 B
Docker
Raw Normal View History

2024-04-10 17:10:44 +08:00
FROM nginx
EXPOSE 80
2024-04-11 17:28:42 +08:00
COPY ./nginx.conf /etc/nginx/nginx.conf
CMD ["nginx", "-g", "daemon off;"]