diff --git a/Dockerfile b/Dockerfile index e84e4b8..e63da96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ # syntax=docker/dockerfile:labs FROM --platform="$BUILDPLATFORM" python:3.13.0-alpine3.20 AS build +ENV PYTHONUNBUFFERED=1 SHELL ["/bin/ash", "-eo", "pipefail", "-c"] ARG PT_VERSION=v6.3.2 \ TARGETARCH @@ -39,6 +40,7 @@ RUN apk upgrade --no-cache -a && \ find /app/node_modules -name "*.node" -type f -exec file {} \; FROM python:3.13.0-alpine3.20 +ENV PYTHONUNBUFFERED=1 COPY --chown=1000:1000 --from=strip /app /app WORKDIR /app RUN apk add --no-cache ca-certificates tzdata tini su-exec nodejs yarn ffmpeg shadow && \