Skip to content

Commit cafa316

Browse files
authored
Merge pull request docker-library#599 from infosiftr/keys.openpgp.org
Switch to "keys.openpgp.org"
2 parents a1254c8 + 7217b72 commit cafa316

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed

3.10-rc/alpine3.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN set -ex \
3535
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
3636
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
3737
&& export GNUPGHOME="$(mktemp -d)" \
38-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
38+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3939
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
4040
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
4141
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.10-rc/alpine3.13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN set -ex \
3535
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
3636
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
3737
&& export GNUPGHOME="$(mktemp -d)" \
38-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
38+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3939
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
4040
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
4141
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.10-rc/buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN set -ex \
2828
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
2929
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
3030
&& export GNUPGHOME="$(mktemp -d)" \
31-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
31+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3232
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
3333
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3434
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.10-rc/buster/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN set -ex \
5555
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
5656
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
5757
&& export GNUPGHOME="$(mktemp -d)" \
58-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
58+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
5959
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
6060
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
6161
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.6/alpine3.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN set -ex \
3333
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
3434
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
3535
&& export GNUPGHOME="$(mktemp -d)" \
36-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
36+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3737
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
3838
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3939
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.6/alpine3.13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN set -ex \
3333
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
3434
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
3535
&& export GNUPGHOME="$(mktemp -d)" \
36-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
36+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3737
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
3838
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3939
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.6/buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN set -ex \
2727
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
2828
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
2929
&& export GNUPGHOME="$(mktemp -d)" \
30-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
30+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3131
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
3232
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3333
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.6/buster/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN set -ex \
5353
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
5454
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
5555
&& export GNUPGHOME="$(mktemp -d)" \
56-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
56+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
5757
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
5858
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
5959
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.6/stretch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN set -ex \
2727
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
2828
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
2929
&& export GNUPGHOME="$(mktemp -d)" \
30-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
30+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
3131
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
3232
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3333
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

3.6/stretch/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN set -ex \
5353
&& wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \
5454
&& wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \
5555
&& export GNUPGHOME="$(mktemp -d)" \
56-
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
56+
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" \
5757
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
5858
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
5959
&& rm -rf "$GNUPGHOME" python.tar.xz.asc \

0 commit comments

Comments
 (0)