fix: symlink python3 to /usr/local/bin/python3

This commit is contained in:
Piotr Dec 2026-01-10 00:44:00 +01:00
parent e67ecb38d4
commit 24cc2c0239
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0

View file

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