From 24cc2c02391a9e461888dd320efb734c5eb8b784 Mon Sep 17 00:00:00 2001 From: Piotr Dec Date: Sat, 10 Jan 2026 00:44:00 +0100 Subject: [PATCH] fix: symlink python3 to /usr/local/bin/python3 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aad1cc2..f6f779b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,8 @@ RUN addgroup \ $USER RUN apk update --no-cache \ - && apk add --no-cache git python3 + && apk add --no-cache git python3 \ + && ln -s /usr/bin/python3 /usr/local/bin/python3 COPY --from=builder --chown=app:app /app/.venv /app/.venv COPY --from=builder --chown=app:app /app/src /app/src