Skip to content

Commit

Permalink
Update build process (GPG, package)
Browse files Browse the repository at this point in the history
  • Loading branch information
WietseWind committed Dec 21, 2022
1 parent 1341c9c commit 4885b9a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ COPY entrypoint /entrypoint.sh

RUN apt-get update -y && \
apt-get install apt-transport-https ca-certificates wget gnupg -y && \
wget -q -O - "https://repos.ripple.com/repos/api/gpg/key/public" | apt-key add - && \
echo "deb https://repos.ripple.com/repos/rippled-deb focal stable" | tee -a /etc/apt/sources.list.d/ripple.list && \
mkdir -p /usr/local/share/keyrings/ && \
wget -q -O - "https://repos.ripple.com/repos/api/gpg/key/public" | gpg --dearmor > ripple-key.gpg && \
mv ripple-key.gpg /usr/local/share/keyrings && \
echo "deb [signed-by=/usr/local/share/keyrings/ripple-key.gpg] https://repos.ripple.com/repos/rippled-deb focal stable" | tee -a /etc/apt/sources.list.d/ripple.list && \
apt-get update -y && \
apt-get install rippled -y && \
rm -rf /var/lib/apt/lists/* && \
Expand Down

0 comments on commit 4885b9a

Please sign in to comment.