diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2023-10-30 20:47:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 20:47:27 +0100 |
commit | 06d00995049db9c7b915f67cfd4a5708aace458f (patch) | |
tree | 0176ca9761b34d72ffd597bd96da3c3ae4912d86 /Docker | |
parent | 4a02352ccc1b313ce967415c6ac10a32aba1893a (diff) | |
download | freshrss-06d00995049db9c7b915f67cfd4a5708aace458f.tar.gz freshrss-06d00995049db9c7b915f67cfd4a5708aace458f.zip |
Require PHP 7.4+ (#5720)
* Require PHP 7.4+
https://github.com/FreshRSS/FreshRSS/discussions/5474
* Update Docker oldest
Alpine 3.13 with PHP 7.4.26
* Add missing packets to Docker oldest
* Update to typed properties
https://php.net/migration74.new-features#migration74.new-features.core.typed-properties
* More types
Diffstat (limited to 'Docker')
-rw-r--r-- | Docker/Dockerfile-Oldest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docker/Dockerfile-Oldest b/Docker/Dockerfile-Oldest index 22b9cec21..b2d915571 100644 --- a/Docker/Dockerfile-Oldest +++ b/Docker/Dockerfile-Oldest @@ -1,4 +1,4 @@ -FROM alpine:3.8 +FROM alpine:3.13 ENV TZ UTC SHELL ["/bin/ash", "-eo", "pipefail", "-c"] @@ -7,7 +7,7 @@ RUN apk add --no-cache \ tzdata \ apache2 php7-apache2 \ php7 php7-curl php7-gmp php7-intl php7-mbstring php7-xml php7-zip \ - php7-ctype php7-dom php7-iconv php7-json php7-opcache php7-openssl php7-phar php7-session php7-xmlreader php7-xml php7-zlib \ + php7-ctype php7-dom php7-iconv php7-json php7-opcache php7-openssl php7-phar php7-session php7-simplexml php7-xmlreader php7-xmlwriter php7-xml php7-tokenizer php7-zlib \ php7-pdo_sqlite php7-pdo_mysql php7-pdo_pgsql RUN mkdir -p /var/www/FreshRSS /run/apache2/ |