Some checks failed
Build and Push Docker Images / Build Frontend (Next.js) (push) Has been cancelled
Build and Push Docker Images / Build Integrator (push) Has been cancelled
Build and Push Docker Images / Build Kestra Init (push) Has been cancelled
Build and Push Docker Images / Trigger Portainer Update (push) Has been cancelled
Build and Push Docker Images / Build Backend (FastAPI) (push) Has been cancelled
Bind mounts don't work on the remote Portainer host since the files aren't present there. Instead, Dockerfile.init copies the flow YAMLs into a dedicated image (kestra/kestra:latest base) that is built in CI and pulled by Portainer like the other images. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
4 lines
129 B
Docker
4 lines
129 B
Docker
FROM kestra/kestra:latest
|
|
COPY flows/ /flows/
|
|
CMD ["flow", "namespace", "update", "schoolcompare.data", "/flows", "--no-delete"]
|