This commit is contained in:
2026-04-19 12:16:40 +07:00
parent 0be3d61f4d
commit 322ab94b10
4 changed files with 254 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM nginx:stable-alpine
COPY index.html /usr/share/nginx/html/index.html
RUN chmod 644 /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]