From 617b9914fb17bd46ced75a1ccdadca4d5ba3c1d7 Mon Sep 17 00:00:00 2001 From: Zoey Date: Wed, 9 Oct 2024 08:35:35 +0200 Subject: [PATCH] Update Dockerfile Signed-off-by: Zoey --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) 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 && \