File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,19 +12,12 @@ install-packages \
1212 tk-dev \
1313 uuid-dev
1414
15- export GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
1615export PYTHON_VERSION=${STACK_VERSION}
1716export PATH=/opt/drycc/python/bin:$PATH
1817
1918set -eux; \
2019 \
2120 wget -O python.tar.xz " https://www.python.org/ftp/python/${PYTHON_VERSION%% [a-z]* } /Python-$PYTHON_VERSION .tar.xz" ; \
22- wget -O python.tar.xz.asc " https://www.python.org/ftp/python/${PYTHON_VERSION%% [a-z]* } /Python-$PYTHON_VERSION .tar.xz.asc" ; \
23- GNUPGHOME=" $( mktemp -d) " ; export GNUPGHOME; \
24- gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys " $GPG_KEY " ; \
25- gpg --batch --verify python.tar.xz.asc python.tar.xz; \
26- command -v gpgconf > /dev/null && gpgconf --kill all || : ; \
27- rm -rf " $GNUPGHOME " python.tar.xz.asc; \
2821 mkdir -p /usr/src/python; \
2922 tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \
3023 rm python.tar.xz; \
You can’t perform that action at this time.
0 commit comments