Files
batida-landing/Dockerfile
Mário Idival 27093a26eb 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
2026-04-17 11:56:26 -03:00

10 lines
209 B
Docker

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