chore: initial project scaffold: nginx/Dockerfile

This commit is contained in:
2026-04-22 07:14:10 +00:00
parent 51da0bc402
commit 758f00698d

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