Introduce a new kaniko image that includes Git

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2021-05-10 14:55:26 +02:00
parent 1bbac35a38
commit 851644234c
No known key found for this signature in database
GPG key ID: 4C514D15D07186F1
2 changed files with 7 additions and 0 deletions

5
Dockerfile.kaniko Normal file
View file

@ -0,0 +1,5 @@
FROM gcr.io/kaniko-project/executor:debug-v1.3.0 AS kaniko
FROM alpine/git
COPY --from=kaniko /kaniko/executor /kaniko/
ENTRYPOINT ["/kaniko/executor"]