File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,10 @@ RUN set -eux; \
4242
4343# Download and verify Python with Sigstore
4444RUN 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
You can’t perform that action at this time.
0 commit comments