dep: php 8.2

This commit is contained in:
2023-02-20 00:11:45 +09:00
parent b73fc43e34
commit 58b15e19b9
3 changed files with 11 additions and 21 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
FROM php:8.1-fpm-bullseye
FROM php:8.2-fpm-bullseye
#debian
ENV LC_ALL=C.UTF-8
@@ -7,11 +7,11 @@ RUN apt -y update ;\
apt -y install \
bzip2 git rsync \
libmemcached-dev libcurl4-openssl-dev \
libicu-dev libjpeg-dev libpng-dev libwebp-dev libfreetype6-dev \
libicu-dev libjpeg-dev libpng-dev libwebp-dev libavif-dev libfreetype6-dev \
libzip-dev libxml2-dev libsqlite3-dev gosu build-essential;
RUN debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype --with-webp --with-jpeg --with-png ; \
docker-php-ext-configure gd --with-freetype --with-webp --with-avif --with-jpeg --with-png ; \
docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd; \
docker-php-ext-configure mysqli --with-mysqli=mysqlnd; \
docker-php-ext-install -j "$(nproc)" \