chore: initial project scaffold: nginx/Dockerfile

This commit is contained in:
2026-04-22 11:19:18 +00:00
parent d579467e0c
commit 35c362e728

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