Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
withinboredom committed Jan 11, 2024
1 parent d8682d3 commit b4c3a5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions init/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ RUN go get ./... \
FROM debian:bookworm-slim

RUN apt-get -qqy update \
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 curl \
&& apt-get install -y --no-install-recommends ca-certificates gnupg2 wget curl \
&& rm -rf /var/lib/apt/lists/*

RUN CODENAME=`lsb_release -cs` GNUPGHOME="$(mktemp -d)" && \
RUN CODENAME="bookworm" GNUPGHOME="$(mktemp -d)" && \
echo "deb https://download.rethinkdb.com/repository/debian-$CODENAME $CODENAME main" > /etc/apt/sources.list.d/rethinkdb.list && \
wget -qO- https://download.rethinkdb.com/repository/raw/pubkey.gpg | sudo apt-key add - && \
wget -qO- https://download.rethinkdb.com/repository/raw/pubkey.gpg | apt-key add - && \
apt-get update && \
apt-get install rethinkdb && \
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit b4c3a5c

Please sign in to comment.