mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2025-12-31 19:47:25 +01:00
Merge pull request #586 from turbo124/master
Fixes for resource path download
This commit is contained in:
@@ -12,10 +12,9 @@ ARG FILENAME=react-invoiceninja.tar
|
||||
|
||||
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/ninja.tar"
|
||||
RUN DOWNLOAD_URL=$(curl -s "https://api.github.com/repos/invoiceninja/invoiceninja/releases/latest" | grep -o '"browser_download_url": "[^"]*react-invoiceninja.tar"' | cut -d '"' -f 4) && \
|
||||
curl -LJO "$DOWNLOAD_URL" && \
|
||||
mv react-invoiceninja.tar /tmp/ninja.tar
|
||||
|
||||
# Extract Invoice Ninja
|
||||
RUN mkdir -p /var/www/app \
|
||||
|
||||
Reference in New Issue
Block a user