chore: initial project scaffold: nginx/Dockerfile

This commit is contained in:
2026-04-22 06:30:29 +00:00
parent 009ccd3427
commit 535e00017a

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