chore: initial project scaffold: nginx/Dockerfile

This commit is contained in:
2026-04-14 07:01:04 +00:00
parent 89f1246536
commit 05fbc683b7

4
nginx/Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]