Skip to content

Commit 2e97a31

Browse files
committed
Fix python build failure on Mac
1 parent 585cd31 commit 2e97a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ubuntu/python/3.7.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
132132
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
133133
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
134134
&& export GNUPGHOME="$(mktemp -d)" \
135-
&& (gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
135+
&& (gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$GPG_KEY" \
136136
|| gpg --keyserver pgp.mit.edu --recv-keys "$GPG_KEY" \
137137
|| gpg --keyserver keyserver.ubuntu.com --recv-keys "$GPG_KEY") \
138138
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \

0 commit comments

Comments
 (0)