Merge pull request #642 from turbo124/debian

Fixes for tar command flags
This commit is contained in:
David Bomba
2024-11-23 19:14:23 +11:00
committed by GitHub

2
debian/Dockerfile vendored
View File

@@ -122,7 +122,7 @@ RUN set -eux; \
curl -L "$DOWNLOAD_URL" -o /tmp/ninja.tar && \
# Try extraction
cd /var/www/html && \
tar --strip-components=1 -xf /tmp/ninja.tar && \
tar -xf /tmp/ninja.tar && \
# List what was extracted
rm -f /tmp/ninja.tar && \
chown -R www-data:www-data /var/www/html