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
This commit is contained in:
0xYiliu 2026-03-22 07:30:58 +08:00 committed by Yiliu
parent c0bb8d6df9
commit 95617287e4

View file

@ -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 \