We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bea5d2 commit d04077dCopy full SHA for d04077d
1 file changed
apps/python/Dockerfile
@@ -37,12 +37,13 @@ RUN set -eux; \
37
xz-utils \
38
zlib1g-dev \
39
dpkg-dev \
40
- cosign \
41
; \
42
rm -rf /var/lib/apt/lists/*
43
44
# Download and verify Python with Sigstore
45
RUN set -eux; \
+ https://github.com/sigstore/cosign/releases/latest/download/cosign_2.6.0_amd64.deb; \
46
+ dpkg -i cosign_2.6.0_amd64.deb; \
47
wget -O python.tar.xz "https://www.python.org/ftp/python/${VERSION%%[a-z]*}/Python-${VERSION}.tar.xz"; \
48
wget -O python.tar.xz.sigstore "https://www.python.org/ftp/python/${VERSION%%[a-z]*}/Python-${VERSION}.tar.xz.sigstore"; \
49
cosign verify-blob --cert python.tar.xz.sigstore python.tar.xz; \
0 commit comments