JobmakerSite/n8ngo/Dockerfile
Ricardo Carneiro a1242cdaaf
All checks were successful
Build and Deploy KVMote Landing Page / build (push) Successful in 34s
Build and Deploy n8ngo Landing Page / build (push) Successful in 47s
Build and Deploy KVMote Landing Page / deploy (push) Successful in 15s
Build and Deploy n8ngo Landing Page / deploy (push) Successful in 11s
Build and Deploy JobMaker / build (push) Successful in 41s
Build and Deploy JobMaker / deploy (push) Successful in 13s
Build and Deploy JobMaker / notify (push) Successful in 1s
feat: add n8ngo and kvmote landing pages as subdomains
- Add n8ngo/ and kvmote/ subfolders with Dockerfiles, nginx configs and static files
- Add dedicated Gitea workflows for each landing page (ports 8084/8085)
- Add paths-ignore to jobmaker workflow so it only triggers on its own files
- Add .dockerignore to keep landing page folders out of jobmaker image

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 19:31:06 -03:00

13 lines
331 B
Docker

FROM nginx:alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/index.html
COPY style.css /usr/share/nginx/html/style.css
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD wget -qO- http://localhost/ || exit 1