Skip to content

Commit 8a58508

Browse files
authored
Fix wpcli url
1 parent 10a3985 commit 8a58508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-images/php/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ RUN set -ex; \
6262
curl -o /usr/local/bin/wp.gpg -fSL "https://github.com/wp-cli/wp-cli/releases/download/v${WORDPRESS_CLI_VERSION}/wp-cli-${WORDPRESS_CLI_VERSION}.phar.gpg"; \
6363
\
6464
export GNUPGHOME="$(mktemp -d)"; \
65-
gpg --keyserver hkp://ipv4.pool.sks-keyservers.net:80 --recv-keys "$WORDPRESS_CLI_GPG_KEY"; \
65+
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$WORDPRESS_CLI_GPG_KEY"; \
6666
gpg --batch --decrypt --output /usr/local/bin/wp /usr/local/bin/wp.gpg; \
6767
rm -r "$GNUPGHOME" /usr/local/bin/wp.gpg; \
6868
\
@@ -83,4 +83,4 @@ RUN apk update; \
8383

8484
WORKDIR /www
8585

86-
ENV PAGER more
86+
ENV PAGER more

0 commit comments

Comments
 (0)