From de7a7731140d4935fc6bb7fb3e363619d99e4924 Mon Sep 17 00:00:00 2001 From: David Corne Date: Thu, 16 Jul 2020 11:41:39 +0100 Subject: [PATCH] Set the python encoding to be UTF8 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a39d5b2..76659cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ RUN sudo apt-get -y upgrade RUN sudo apt-get install -y sqlite3 libsqlite3-dev python3 python3-pip RUN pip3 install 'pyyaml>5.1' +ENV PYTHONIOENCODING UTF-8 COPY . /project WORKDIR /project/bin