From 225c73158900ae18b04019f05fb0f98a9b2817bc Mon Sep 17 00:00:00 2001 From: Yishuai Li Date: Tue, 11 Apr 2023 15:29:15 +0800 Subject: [PATCH] Dockerfile: unbuffer stdout --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 87753eea..6c3ab423 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,4 @@ WORKDIR /gpt RUN pip3 install -r requirements.txt -CMD ["python3", "main.py"] \ No newline at end of file +CMD ["python3", "-u", "main.py"]