From 77487274dbe912c8bf84be283d5ddceb0684ba6d Mon Sep 17 00:00:00 2001 From: Jocelyn Le Sage Date: Thu, 2 Jun 2022 10:21:54 -0400 Subject: [PATCH] Fixed installation of node-prune. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba8d4b7..790cd5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -233,7 +233,8 @@ RUN \ # Install node-prune. echo "Installing node-prune..." && \ - curl -sfL https://install.goreleaser.com/github.com/tj/node-prune.sh | bash -s -- -b /tmp/bin && \ + mkdir /tmp/bin && \ + curl -sfL https://gobinaries.com/tj/node-prune | PREFIX=/tmp/bin sh && \ # Download the Nginx Proxy Manager package. echo "Downloading Nginx Proxy Manager package..." && \