From 626611f5a8fbbb64019d2b8520a3c90c2c4f12f7 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 26 Nov 2023 00:39:46 +0100 Subject: [PATCH] Update dockerfile for unbuffered print --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 80695e8..41b1a33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ WORKDIR /app COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt COPY . . -CMD ["python3", "bot.py"] +CMD ["python3", "-u", "bot.py"]