diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-04-07 20:08:17 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-04-07 20:09:31 +0300 |
| commit | 026d68fc2d0f24e4f2d46c5743a22f42053caa67 (patch) | |
| tree | f4552b9d8090bca446bdf0e203b4a76a53a58ebf /.docker | |
| parent | bb2c4b380165731c3f8abf0596fffb2a0953265b (diff) | |
add optional encryption for stored session data using Sodium library
Diffstat (limited to '.docker')
| -rw-r--r-- | .docker/app/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile index acfc1a9e5..7a87f7ea3 100644 --- a/.docker/app/Dockerfile +++ b/.docker/app/Dockerfile @@ -16,7 +16,7 @@ RUN [ ! -z ${ALPINE_MIRROR} ] && \ apk add --no-cache ca-certificates dcron git postgresql-client rsync sudo tzdata \ php${PHP_SUFFIX} \ $(for p in ctype curl dom exif fileinfo fpm gd iconv intl json mbstring opcache \ - openssl pcntl pdo pdo_pgsql pecl-apcu pecl-xdebug phar posix session simplexml sockets tokenizer xml xmlwriter zip; do \ + openssl pcntl pdo pdo_pgsql pecl-apcu pecl-xdebug phar posix session simplexml sockets sodium tokenizer xml xmlwriter zip; do \ php_pkgs="$php_pkgs php${PHP_SUFFIX}-$p"; \ done; \ echo $php_pkgs) && \ |