From d2f77e6aafbbc3d4a6f6fec5a35c76dc124c6e70 Mon Sep 17 00:00:00 2001 From: Alex Cameron Date: Tue, 11 Oct 2022 08:30:07 +1100 Subject: [PATCH] Update Dockerfile section of README (#2323) Signed-off-by: Alex Cameron Signed-off-by: Alex Cameron --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b317426468..96b44a86541 100644 --- a/README.md +++ b/README.md @@ -48,10 +48,10 @@ If you have Go 1.17+, you can setup a development environment: Here is how to install and use cosign inside a Dockerfile through the gcr.io/projectsigstore/cosign image: ```shell -FROM gcr.io/projectsigstore/cosign:v1.9.0 as cosign-bin +FROM gcr.io/projectsigstore/cosign:v1.13.0 as cosign-bin -# Source: https://github.com/distroless/static -FROM ghcr.io/distroless/static:latest +# Source: https://github.com/chainguard-images/static +FROM cgr.dev/chainguard/static:latest COPY --from=cosign-bin /ko-app/cosign /usr/local/bin/cosign ENTRYPOINT [ "cosign" ] ```