chore: initial project scaffold: nginx/Dockerfile

This commit is contained in:
2026-04-22 06:51:08 +00:00
parent 9fe64b902b
commit 07ed76727d

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;"]