From fc47bc97c7c563db656374c4329163890ebc544a Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Sat, 21 Oct 2023 20:26:32 -0400 Subject: [PATCH] Include `bitcoin-cli` in built image --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 5a48428..52e84d9 100644 --- a/Containerfile +++ b/Containerfile @@ -51,7 +51,7 @@ RUN set -ex && \ apt-get clean && \ rm -rf /var/lib/apt -COPY --from=downloader /bitcoin/tmp/bin/bitcoind /usr/local/bin/ +COPY --from=downloader /bitcoin/tmp/bin/bitcoind /bitcoin/tmp/bin/bitcoin-cli /usr/local/bin/ RUN adduser --system --group --disabled-password bitcoin && \ mkdir -p /home/bitcoin/.bitcoin