Skip to content

Commit 0409bf3

Browse files
committed
skip verify for now
1 parent d04077d commit 0409bf3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apps/python/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ RUN set -eux; \
4242

4343
# Download and verify Python with Sigstore
4444
RUN set -eux; \
45-
https://github.com/sigstore/cosign/releases/latest/download/cosign_2.6.0_amd64.deb; \
46-
dpkg -i cosign_2.6.0_amd64.deb; \
4745
wget -O python.tar.xz "https://www.python.org/ftp/python/${VERSION%%[a-z]*}/Python-${VERSION}.tar.xz"; \
4846
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; \
47+
# TODO: setup verification
48+
# cosign verify-blob --cert python.tar.xz.sigstore python.tar.xz; \
5049
mkdir -p /usr/src/python; \
5150
tar -xf python.tar.xz -C /usr/src/python --strip-components=1; \
5251
rm -f python.tar.xz python.tar.xz.sigstore

0 commit comments

Comments
 (0)