From ce31419bb919e53441d91b610619a2164f347f62 Mon Sep 17 00:00:00 2001 From: yuuki <> Date: Sat, 6 Apr 2024 18:32:02 +0000 Subject: [PATCH] pythonunbuffered --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0080363..9898640 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,5 @@ FROM python:3 COPY . /app WORKDIR /app RUN pip install -r requirements.txt +ENV PYTHONUNBUFFERED 1 CMD ["waitress-serve", "app:app"]