[PATCH] D50431: generalize SKS key server in debian8 Dockerfile

Benjamin Buch via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 8 03:27:35 PDT 2018


bebuch created this revision.
bebuch added a reviewer: RKSimon.
Herald added a subscriber: llvm-commits.

pgp.mit.edu is often down. I recommend changing to pool.sks-keyservers.net, which is the SKS key server pool that pgp.mit.edu is a part of. This will generally be more reliable since any member servers (including pgp.mit.edu) could answer the key request.


Repository:
  rL LLVM

https://reviews.llvm.org/D50431

Files:
  utils/docker/debian8/Dockerfile


Index: utils/docker/debian8/Dockerfile
===================================================================
--- utils/docker/debian8/Dockerfile
+++ utils/docker/debian8/Dockerfile
@@ -26,7 +26,7 @@
     unzip ninja-linux.zip -d /usr/local/bin && \
     rm ninja-linux.zip
 # Import public key required for verifying signature of cmake download.
-RUN gpg --keyserver hkp://pgp.mit.edu --recv 0x2D2CEF1034921684
+RUN gpg --keyserver hkp://pool.sks-keyservers.net --recv 0x2D2CEF1034921684
 # Download, verify and install cmake version that can compile clang into /usr/local.
 # (Version in debian8 repos is is too old)
 RUN mkdir /tmp/cmake-install && cd /tmp/cmake-install && \


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50431.159671.patch
Type: text/x-patch
Size: 676 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180808/22315831/attachment.bin>


More information about the llvm-commits mailing list