Initial commit: static Zeppo website with Dockerfile and Gitea CI
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 2m5s

This commit is contained in:
Stephen Tafoya
2026-06-10 19:15:37 -06:00
commit c11080628a
4 changed files with 366 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY index.html style.css /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]