diff options
| author | 2023-05-10 23:54:49 +0200 | |
|---|---|---|
| committer | 2023-05-10 23:54:49 +0200 | |
| commit | 97226dc8a6bc561b817e4d9a5e51328deba09c61 (patch) | |
| tree | 5d41ed8a9e0fad08be4bfe09b2a80238dd796c94 | |
| parent | b97545aff3be1377ee7a5d4f6b094f024521bbac (diff) | |
Update Docker image Alpine 3.18 (#5383)
https://alpinelinux.org/posts/Alpine-3.18.0-released.html
Minor updates with Apache 2.4.57 and PHP 8.1.19
| -rw-r--r-- | Docker/Dockerfile-Alpine | 2 | ||||
| -rwxr-xr-x | cli/access-permissions.sh | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Docker/Dockerfile-Alpine b/Docker/Dockerfile-Alpine index 65c2de6be..68e25faa8 100644 --- a/Docker/Dockerfile-Alpine +++ b/Docker/Dockerfile-Alpine @@ -1,4 +1,4 @@ -FROM alpine:3.17 +FROM alpine:3.18 ENV TZ UTC SHELL ["/bin/ash", "-eo", "pipefail", "-c"] diff --git a/cli/access-permissions.sh b/cli/access-permissions.sh index c13130a4b..6a6038ef4 100755 --- a/cli/access-permissions.sh +++ b/cli/access-permissions.sh @@ -13,7 +13,10 @@ fi # Based on group access chown -R :www-data . + # Read files, and directory traversal chmod -R g+rX . + # Write access +mkdir -p ./data/users/_/ chmod -R g+w ./data/ |
