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
- 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>
13 lines
354 B
Docker
13 lines
354 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 quadrinhos_kvmote.png /usr/share/nginx/html/quadrinhos_kvmote.png
|
|
|
|
EXPOSE 80
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
|
CMD wget -qO- http://localhost/ || exit 1
|