Merge pull request #222 from phillamy/fix-tor-signature-check

Tor : changed the key verification server to keys.openpgp.org
This commit is contained in:
kexkey
2021-06-22 11:08:16 -04:00
committed by GitHub

View File

@@ -12,7 +12,7 @@ RUN wget $TORGZ.asc && wget $TORGZ
# From https://2019.www.torproject.org/include/keys.txt
# Roger Dingledine: 0xEB5A896A28988BF5, 0xC218525819F78451
# Nick Mathewson: 0xFE43009C4607B1FB, 0x6AFEE6D49E92B601(signing key)
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 0xFE43009C4607B1FB 0x6AFEE6D49E92B601 \
RUN gpg --keyserver keys.openpgp.org --recv-keys 0xFE43009C4607B1FB 0x6AFEE6D49E92B601 \
&& gpg --verify tor-$TOR_VER.tar.gz.asc \
&& tar xfz tor-$TOR_VER.tar.gz && cd tor-$TOR_VER \
&& ./configure && make install