From 6264e4ef1033fae37e999104581549587615ebd4 Mon Sep 17 00:00:00 2001 From: z-br Date: Sun, 22 Jun 2025 22:36:37 -0700 Subject: [PATCH] fix: add file command to claude automation container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves missing 'file' command error in the Claude automation container by adding the file package to Alpine apk dependencies. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile.claude-automation | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.claude-automation b/Dockerfile.claude-automation index 298e97b..a4ed1e6 100644 --- a/Dockerfile.claude-automation +++ b/Dockerfile.claude-automation @@ -7,7 +7,8 @@ RUN apk add --no-cache \ curl \ openssh-client \ python3 \ - py3-pip + py3-pip \ + file # Install Claude Code globally RUN npm install -g @anthropic-ai/claude-code