diff options
author | Adam Kocoloski <kocolosk@apache.org> | 2021-06-10 11:29:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 11:29:09 -0400 |
commit | 7456125f8ede38ec65cf77d268bc5d953f1f01e1 (patch) | |
tree | 9265bb8beb35b33332af517f4243eb7d30d8d443 | |
parent | e013e3884317b53bde62c71b0d543ddcd4f0c116 (diff) | |
download | couchdb-7456125f8ede38ec65cf77d268bc5d953f1f01e1.tar.gz |
Remove attempt to download GeoTrust CA (#3616)
This URL is a 404 now, but fortunately we don't care as
foundationdb.org is no longer dependent on GeoTrust at all in its
root of trust.
-rw-r--r-- | .devcontainer/Dockerfile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d479bc5a6..3272dad05 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -15,10 +15,8 @@ ARG FDB_VERSION ARG SM_VSN ENV SM_VSN=${SM_VSN:-60} -# Workaround for Debian's temporary lack of trust in FDB Root CA RUN set -ex; \ - wget https://www.geotrust.com/resources/root_certificates/certificates/GeoTrust_Global_CA.pem; \ - wget --ca-certificate=GeoTrust_Global_CA.pem https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-clients_${FDB_VERSION}-1_amd64.deb; \ + wget https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-clients_${FDB_VERSION}-1_amd64.deb; \ mkdir /var/lib/foundationdb; \ dpkg -i foundationdb-clients_${FDB_VERSION}-1_amd64.deb |