From df2ea66cda071e9577b7a3047db142ee6456157d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 9 Jun 2024 12:31:47 +1000 Subject: [PATCH] Fixes for build --- alpine/5/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/5/Dockerfile b/alpine/5/Dockerfile index 76f551e..aa20726 100644 --- a/alpine/5/Dockerfile +++ b/alpine/5/Dockerfile @@ -15,7 +15,7 @@ RUN set -eux; apk add curl unzip grep # Fetch the latest release information RUN release_info=$(curl -s "https://api.github.com/repos/${REPOSITORY}/releases/latest") && \ download_url=$(echo "$release_info" | grep -o '"browser_download_url": "[^"]*'${FILENAME}'"' | cut -d '"' -f 4) && \ - curl -LJO "$download_url" -o "/tmp/${FILENAME}" + curl -LJO "$download_url" -o "/tmp/ninja.tar" # Extract Invoice Ninja RUN mkdir -p /var/www/app \