From 57fd639926c415a2fa4150ac72230eb5758ff48b Mon Sep 17 00:00:00 2001 From: Doron Somech Date: Sat, 30 Apr 2022 20:08:50 +0300 Subject: [PATCH] fix: use version 1.7.0 of kaniko Version 1.8.0 and above breaks reproducible builds. https://github.com/GoogleContainerTools/kaniko/issues/2005 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fc8715f..2398b0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]