From 2fe86a064eae215af9f8b0916e478e41308b0e77 Mon Sep 17 00:00:00 2001 From: xiaoqidun Date: Thu, 21 Sep 2023 23:06:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC):=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= 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 c533e82..223aaf0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ # 基础镜像 -FROM php:8.2.9-fpm +FROM php:8.2.10-fpm # 作者信息 LABEL MAINTAINER="xiaoqidun@gmail.com" # 安装扩展 -RUN pecl install redis-5.3.7 \ +RUN pecl install redis-6.0.0 \ && docker-php-ext-enable redis -RUN pecl install xdebug-3.2.1 \ +RUN pecl install xdebug-3.3.0alpha2 \ && docker-php-ext-enable xdebug RUN pecl install runkit7-4.0.0a6 \