From 04b689fc95988e52abd40ac2b7eae1e1c9ac5e54 Mon Sep 17 00:00:00 2001 From: root <1772105645@qq.com> Date: Fri, 19 Dec 2025 10:39:10 +0800 Subject: [PATCH] Fix Dockerfile: add file package installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add file package to runtime environment - Fix build error where file command was not found 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5500816..9558ad8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -88,7 +88,7 @@ RUN echo "🔧 ===== 运行时环境准备 =====" && \ echo " - 用户: $(whoami)" && \ echo " - 系统信息: $(uname -a)" && \ echo "📋 安装运行时工具..." && \ - apk add --no-cache wget && \ + apk add --no-cache wget file && \ echo "✅ 运行时环境准备完成" # Copy the Pre-built binary from the previous stage with logging