Skip to content

Commit

Permalink
Fixes for tar command flags
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Nov 23, 2024
1 parent 7ddfe8a commit ea8c5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ WORKDIR /var/www/html
RUN set -eux; \
DOWNLOAD_URL=$(curl -s "https://api.github.com/repos/invoiceninja/invoiceninja/releases/latest" | \
grep -o '"browser_download_url": "[^"]*invoiceninja.tar"' | cut -d '"' -f 4) && \
curl -L "$DOWNLOAD_URL" | tar -xfvz -C /var/www/html --overwrite && \
curl -L "$DOWNLOAD_URL" | tar -xzf - -C /var/www/html --overwrite && \
rm -rf /var/www/html/ui && \
chown -R www-data:www-data /var/www/html

Expand Down

0 comments on commit ea8c5fe

Please sign in to comment.