Skip to content

Commit

Permalink
feat: Introduce chain-dl Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
k3yss committed Dec 27, 2024
1 parent d201664 commit f7e53bb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions images/chain-dl/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM lncm/bitcoind:v27.0

USER root

RUN apk add curl python3

USER bitcoind

RUN cd ~ && \
curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-455.0.0-linux-x86_64.tar.gz \
&& tar -xvzf ./google-cloud* \
&& ./google-cloud-sdk/install.sh --quiet \
&& rm *.tar.gz

ENV PATH="${PATH}:/data/google-cloud-sdk/bin"

ENTRYPOINT []

0 comments on commit f7e53bb

Please sign in to comment.