From 5ceb83e2197dd8db2c4b5131dd73ca4076c4eb27 Mon Sep 17 00:00:00 2001 From: Dominik Muhs Date: Sun, 9 Sep 2018 18:32:44 +0200 Subject: [PATCH] Add default utf-8 python IO encoding to dockerfile env --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 23780cb3..02c305b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,6 @@ RUN apt-get update \ && pip3 install -r requirements.txt \ && python setup.py install +ENV PYTHONIOENCODING=UTF-8 + ENTRYPOINT ["/usr/local/bin/myth"]