Fix ownership command for invoiceninja tarball

Signed-off-by: TheNewSound <info@worldwidecrap.nl>
This commit is contained in:
TheNewSound
2025-10-27 16:48:15 +01:00
committed by GitHub
parent e1ed2f0eab
commit b40a60a12d

2
debian/Dockerfile vendored
View File

@@ -5,7 +5,7 @@ FROM php:${PHP}-fpm AS prepare-app
# Download and extract as root # Download and extract as root
ADD https://github.com/invoiceninja/invoiceninja/releases/latest/download/invoiceninja.tar.gz /tmp/invoiceninja.tar.gz ADD https://github.com/invoiceninja/invoiceninja/releases/latest/download/invoiceninja.tar.gz /tmp/invoiceninja.tar.gz
# Set correct permissions # Set correct permissions
RUN chown -R www-data:www-data /tmp/invoiceninja.tar.gz RUN chown www-data:www-data /tmp/invoiceninja.tar.gz
USER www-data USER www-data