From 0abc15044f9b63757aab7c40254b7aef7736c6d3 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Thu, 19 Oct 2023 19:50:06 -0400 Subject: [PATCH] Include only `bitcoind` from downloader stage This should help make the image leaner. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index dcddcb7..8144593 100644 --- a/Containerfile +++ b/Containerfile @@ -39,7 +39,7 @@ RUN set -ex && \ apt-get clean && \ rm -rf /var/lib/apt -COPY --from=downloader /bitcoin/tmp/bin/bitcoin* /usr/local/bin/ +COPY --from=downloader /bitcoin/tmp/bin/bitcoind /usr/local/bin/ RUN adduser --system --group --disabled-password bitcoin && \ mkdir -p /home/bitcoin/.bitcoin