From 37a678e9db3cf235c726f8f551e325a21db5a357 Mon Sep 17 00:00:00 2001 From: xgaia Date: Fri, 12 May 2023 12:22:58 +0200 Subject: [PATCH 1/2] chore: fix owner of the data dir --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index d5fe986..67a372a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -6,6 +6,7 @@ envsubst < /usr/local/signaturepdf/config/config.ini.tpl > /usr/local/signaturep if [[ ! -z $PDF_STORAGE_PATH ]] ; then mkdir -p $PDF_STORAGE_PATH + chown www-data:www-data $PDF_STORAGE_PATH fi apache2-foreground From 5f703890acda04c22ee8f09ecd1b014b6beda6bc Mon Sep 17 00:00:00 2001 From: Simon C Date: Fri, 12 May 2023 16:01:32 +0200 Subject: [PATCH 2/2] feat: Update php version on Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c617dcb..103683f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.4-apache +FROM php:8.2-apache ENV SERVERNAME=localhost ENV UPLOAD_MAX_FILESIZE=24M