Skip to content

Commit

Permalink
Make buster 2.4.3 use a working key server
Browse files Browse the repository at this point in the history
Copied the command line from bullseye and swapped bullseye with buster.
  • Loading branch information
srh committed Dec 12, 2023
1 parent be92a1b commit 42e5560
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions buster/2.4.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ RUN apt-get -qqy update \
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 \
&& rm -rf /var/lib/apt/lists/*

RUN apt-key adv --keyserver pgp.mit.edu --recv-keys "539A3A8C6692E6E3F69B3FE81D85E93F801BB43F" \
&& echo "deb https://download.rethinkdb.com/repository/debian-buster buster main" > /etc/apt/sources.list.d/rethinkdb.list
RUN GNUPGHOME="$(mktemp -d)" && export GNUPGHOME \
&& gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys 539A3A8C6692E6E3F69B3FE81D85E93F801BB43F \
&& gpg --batch --export 539A3A8C6692E6E3F69B3FE81D85E93F801BB43F > /usr/share/keyrings/rethinkdb.gpg \
&& gpgconf --kill all && rm -rf "$GNUPGHOME" \
&& echo "deb [signed-by=/usr/share/keyrings/rethinkdb.gpg] https://download.rethinkdb.com/repository/debian-buster buster main" > /etc/apt/sources.list.d/rethinkdb.list

ENV RETHINKDB_PACKAGE_VERSION 2.4.3~0buster

Expand Down

0 comments on commit 42e5560

Please sign in to comment.