mirror of
https://github.com/wallabag/wallabag.git
synced 2025-03-13 22:52:39 +00:00
Upgrade PHP Docker base image to 8.2
This commit is contained in:
parent
a4a6eb580b
commit
d082def664
1 changed files with 6 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM php:8.1-fpm AS rootless
|
||||
FROM php:8.2-fpm AS rootless
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
ARG NODE_VERSION=20
|
||||
|
@ -50,14 +50,13 @@ RUN docker-php-ext-install -j "$(nproc)" \
|
|||
tidy \
|
||||
zip
|
||||
|
||||
RUN pecl install redis; \
|
||||
pecl install imagick; \
|
||||
pecl install xdebug-3.1.6; \
|
||||
docker-php-ext-enable \
|
||||
RUN pecl install redis-6.1.0 \
|
||||
&& pecl install imagick-3.7.0 \
|
||||
&& pecl install xdebug-3.4.1 \
|
||||
&& docker-php-ext-enable \
|
||||
redis \
|
||||
imagick \
|
||||
xdebug \
|
||||
;
|
||||
xdebug
|
||||
|
||||
RUN version=$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \
|
||||
&& architecture=$(uname -m) \
|
||||
|
|
Loading…
Reference in a new issue