aboutsummaryrefslogtreecommitdiff
path: root/Docker/Dockerfile-Newest
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-06-19 20:09:09 +0200
committerGravatar GitHub <noreply@github.com> 2022-06-19 20:09:09 +0200
commita90d93979f63b48c76308ae26c845d8b58f5368d (patch)
treefb84b42ee2d148227196e157495935ec3a625a68 /Docker/Dockerfile-Newest
parentf365a9aeb44c33a1c817ae19a6027aa0fbffd706 (diff)
Docker Alpine updates (#4420)
* Added PHP extensions `php-openssl` (used by PHPMailer) and php-xml (used by SimplePie) * Upgraded dev image `freshrss/freshrss:newest` to PHP 8.2.
Diffstat (limited to 'Docker/Dockerfile-Newest')
-rw-r--r--Docker/Dockerfile-Newest12
1 files changed, 6 insertions, 6 deletions
diff --git a/Docker/Dockerfile-Newest b/Docker/Dockerfile-Newest
index c42080186..d5942c77e 100644
--- a/Docker/Dockerfile-Newest
+++ b/Docker/Dockerfile-Newest
@@ -4,10 +4,10 @@ ENV TZ UTC
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \
apk add --no-cache \
- apache2 php81-apache2 \
- php81 php81-curl php81-gmp php81-intl php81-mbstring php81-xml php81-zip \
- php81-ctype php81-dom php81-fileinfo php81-iconv php81-json php81-opcache php81-phar php81-session php81-simplexml php81-xmlreader php81-xmlwriter php81-tokenizer php81-zlib \
- php81-pdo_sqlite php81-pdo_mysql php81-pdo_pgsql
+ apache2 php82-apache2 \
+ php82 php82-curl php82-gmp php82-intl php82-mbstring php82-xml php82-zip \
+ php82-ctype php82-dom php82-fileinfo php82-iconv php82-json php82-opcache php82-openssl php82-phar php82-session php82-simplexml php82-xmlreader php82-xmlwriter php82-xml php82-tokenizer php82-zlib \
+ php82-pdo_sqlite php82-pdo_mysql php82-pdo_pgsql
RUN mkdir -p /var/www/FreshRSS /run/apache2/
WORKDIR /var/www/FreshRSS
@@ -39,8 +39,8 @@ RUN rm -f /etc/apache2/conf.d/languages.conf /etc/apache2/conf.d/info.conf \
/etc/apache2/httpd.conf && \
sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" \
/etc/apache2/httpd.conf && \
- if [ ! -f /usr/bin/php ]; then ln -s /usr/bin/php81 /usr/bin/php; else true; fi && \
- echo 'memory_limit = 256M' > /etc/php81/conf.d/10_memory.ini && \
+ if [ ! -f /usr/bin/php ]; then ln -s /usr/bin/php82 /usr/bin/php; else true; fi && \
+ echo 'memory_limit = 256M' > /etc/php82/conf.d/10_memory.ini && \
# Disable built-in updates when using Docker, as the full image is supposed to be updated instead.
sed -r -i "\\#disable_update#s#^.*#\t'disable_update' => true,#" ./config.default.php && \
touch /var/www/FreshRSS/Docker/env.txt && \