initial commit

This commit is contained in:
2026-06-22 21:27:15 +07:00
commit 8068f8910b
18 changed files with 208 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM nginx:alpine
COPY default.conf /etc/nginx/conf.d/default.conf
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]