All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 34s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m4s
Build and Push Docker Images / Build Integrator (push) Successful in 56s
Build and Push Docker Images / Build Kestra Init (push) Successful in 32s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
kestra/kestra:latest is ~500MB; the registry rejects the push. The init container only needs to POST flow YAMLs to the Kestra REST API (/api/v1/flows/import), which curl handles fine from a tiny alpine base. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
161 B
Docker
7 lines
161 B
Docker
FROM alpine:3.19
|
|
RUN apk add --no-cache curl
|
|
COPY flows/ /flows/
|
|
COPY docker/kestra-init.sh /kestra-init.sh
|
|
RUN chmod +x /kestra-init.sh
|
|
CMD ["/kestra-init.sh"]
|