From dcba2e3b80778dc9387f717b13b9847d26bde8ff Mon Sep 17 00:00:00 2001 From: mitsuha_s Date: Fri, 22 Jul 2022 13:43:03 +0000 Subject: [PATCH] add python version in Dockerfile and change PYTHONUNBUFFERED value to 1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb543c6..d9c2d9b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:3.10-alpine WORKDIR /bot @@ -6,7 +6,7 @@ COPY . . RUN pip install -r requirements.txt -ENV PYTHONUNBUFFERED='a' +ENV PYTHONUNBUFFERED=1 ENTRYPOINT [ "python" ]