feat: initial landing page with K8s deploy config

- Nginx static serving with APP_URL env var
- K8s manifests for prod and staging
- Gitea Actions CI/CD pipeline
This commit is contained in:
2026-04-17 11:56:26 -03:00
commit 27093a26eb
5 changed files with 1993 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM nginx:alpine
ARG APP_URL=https://app.batida.io
COPY index.html /tmp/index.html
RUN sed -i "s|{{APP_URL}}|${APP_URL}|g" /tmp/index.html
RUN mv /tmp/index.html /usr/share/nginx/html/index.html
EXPOSE 80