From 0e964a134acb5c597a9572b1a770e535702cfd88 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Thu, 18 Nov 2021 23:34:19 -0300 Subject: [PATCH] fix: cosign is on /ko-app after looking into it with docker inspect, it seem the binary is actually on /ko-app instead of /bin. build was failing on master (branches are not running the whole goreleaser process rn) cc/ @cpanato --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 04ba2c189..e102de469 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk add --no-cache bash \ tini # install cosign -COPY --from=gcr.io/projectsigstore/cosign:v1.3.1@sha256:3cd9b3a866579dc2e0cf2fdea547f4c9a27139276cc373165c26842bc594b8bd /bin/cosign /usr/local/bin/cosign +COPY --from=gcr.io/projectsigstore/cosign:v1.3.1@sha256:3cd9b3a866579dc2e0cf2fdea547f4c9a27139276cc373165c26842bc594b8bd /ko-app/cosign /usr/local/bin/cosign ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"] CMD [ "-h" ]