From fe2a41cd33c9e57352b4f59be122d6723ec1b004 Mon Sep 17 00:00:00 2001 From: ZF sun <34314687@qq.com> Date: Thu, 22 Jan 2026 10:49:55 +0800 Subject: [PATCH] =?UTF-8?q?build(php):=20=E5=9C=A8=20Dockerfile=20?= =?UTF-8?q?=E4=B8=AD=E6=B7=BB=E5=8A=A0=20lsof=20=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 安装 lsof 工具以便于调试容器内的进程和文件打开情况 --- docker/php/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index ab5bd85da..bd5718d03 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -14,6 +14,7 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf RUN apt-get update && apt-get install -y \ supervisor \ git \ + lsof \ curl \ vim \ libpng-dev \