From 1097d3afcca1675f1dda78760c849c65448815a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Apayd=C4=B1n?= Date: Thu, 15 Sep 2022 18:29:23 +0300 Subject: [PATCH] fix: add COSIGN_EXPERIMENTAL=1 for verify-blob MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Batuhan Apaydın --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 84fab87..281c45d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN \ wget https://github.com/goreleaser/goreleaser/releases/download/v$GORELEASER_VERSION/checksums.txt.pem && \ GORELEASER_DOWNLOAD_FILE=goreleaser_Linux_x86_64.tar.gz && \ GORELEASER_DOWNLOAD_URL=https://github.com/goreleaser/goreleaser/releases/download/v${GORELEASER_VERSION}/${GORELEASER_DOWNLOAD_FILE} && \ - cosign verify-blob --cert checksums.txt.pem \ + COSIGN_EXPERIMENTAL=1 cosign verify-blob --cert checksums.txt.pem \ --signature https://github.com/goreleaser/goreleaser/releases/download/v$GORELEASER_VERSION/checksums.txt.sig \ https://github.com/goreleaser/goreleaser/releases/download/v$GORELEASER_VERSION/checksums.txt && \ wget ${GORELEASER_DOWNLOAD_URL} && \