first init

This commit is contained in:
Power BI Dev
2026-07-01 07:24:01 +07:00
commit d20851686e
3 changed files with 457 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
CMD wget -qO- http://localhost/ || exit 1