Initial site + Dockerfile

Static holding page for anilstocker.org, served by nginx:alpine.
This commit is contained in:
2026-04-18 16:11:01 +01:00
parent 39e24df319
commit c6fbdb4b26
4 changed files with 98 additions and 1 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY site/ /usr/share/nginx/html/
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=3s CMD wget -qO- http://127.0.0.1/ >/dev/null || exit 1