Files
kaniko/Dockerfile
ytshih d4ac635109
All checks were successful
Build image / release-image (push) Successful in 51s
Fix: entrypoint.sh location
2025-04-19 17:15:35 +08:00

13 lines
297 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.sh /kaniko/entrypoint.sh
ENTRYPOINT ["/kaniko/entrypoint.sh"]