Files
kaniko/Dockerfile
ytshih e084dfe265
Some checks failed
Build image / release-image (push) Failing after 36s
Feat: add crane support
2025-04-19 17:13:27 +08:00

13 lines
294 B
Docker

FROM gcr.io/go-containerregistry/crane:v0.20.3 AS crane
#####
FROM gcr.io/kaniko-project/executor:v1.23.2-debug
ADD rootca.pem /usr/local/share/ca-certificates/rootca.pem
COPY --from=crane /ko-app/crane /bin/crane
COPY entrypoint /kaniko/entrypoint.sh
ENTRYPOINT ["/kaniko/entrypoint.sh"]