cdn/Dockerfile

7 lines
134 B
Docker
Raw Permalink Normal View History

2025-01-16 16:46:20 +01:00
FROM nginx:latest
COPY src /usr/share/nginx/html
2025-01-23 14:37:16 +01:00
#COPY nginx.conf /etc/nginx/conf.d/default.conf
2025-01-16 16:46:20 +01:00
2025-01-23 14:37:16 +01:00
CMD ["nginx", "-g", "daemon off;"]