From f8cf81c6f28267b324eb5be3dbdaeeb148dd8c78 Mon Sep 17 00:00:00 2001 From: Bill Date: Sun, 15 Sep 2024 18:15:25 -0400 Subject: [PATCH] Make entrypoint script executable --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index eee8073..a77eb98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,6 +58,7 @@ RUN set -ex \ && rm -rf /opt/bitcoin-${BITCOIN_VERSION}/bin/bitcoin-qt COPY docker-entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh VOLUME ["/home/bitcoin/.bitcoin"]