1
0
Fork 0
mirror of https://github.com/aevea/action-kaniko.git synced 2025-01-30 22:09:37 +01:00

fix: use version 1.7.0 of kaniko

Version 1.8.0 and above breaks reproducible builds.

https://github.com/GoogleContainerTools/kaniko/issues/2005
This commit is contained in:
Doron Somech 2022-04-30 20:08:50 +03:00 committed by Alex Viscreanu
parent c97b90ade3
commit 57fd639926

View file

@ -2,7 +2,7 @@ FROM alpine as certs
RUN apk --update add ca-certificates
FROM gcr.io/kaniko-project/executor:debug
FROM gcr.io/kaniko-project/executor:v1.7.0-debug
SHELL ["/busybox/sh", "-c"]