From 95617287e47cb79ba8837c57e2a7c5e0de6bce22 Mon Sep 17 00:00:00 2001 From: 0xYiliu <3838688+0xYiliu@users.noreply.github.com> Date: Sun, 22 Mar 2026 07:30:58 +0800 Subject: [PATCH] feat(docker): add python3 to runtime image for skill scripts Some skills depend on Python scripts for data processing or API integration. Adding python3 enables these skills to work in containerized deployments. Closes #1870 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 480244127..97b93c5a8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,7 +20,7 @@ RUN make build # ============================================================ FROM alpine:3.23 -RUN apk add --no-cache ca-certificates tzdata curl +RUN apk add --no-cache ca-certificates tzdata curl python3 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \