From 0c9f78d523b7e08bcd1c25f692cd2ef2d1f945ff Mon Sep 17 00:00:00 2001 From: xiaoqidun Date: Fri, 23 May 2025 14:49:32 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=9B=B4=E6=96=B0=E9=95=9C=E5=83=8F):=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=95=9C=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e2a307a..06d21be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ # 基础镜像 -FROM php:8.3.12-fpm +FROM php:8.3.21-fpm # 作者信息 LABEL authors="xiaoqidun" # 安装扩展 -RUN pecl install redis-6.1.0RC1 \ +RUN pecl install redis-6.2.0 \ && docker-php-ext-enable redis -RUN pecl install xdebug-3.3.2 \ +RUN pecl install xdebug-3.4.3 \ && docker-php-ext-enable xdebug RUN pecl install runkit7-4.0.0a6 \