From 167ffeed23943744e1e17a07947df944e274a9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 2 Mar 2017 19:14:36 +0100 Subject: [PATCH] Set the locale to C.UTF-8 to fix unicode in Python 3 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 76707e0..ef527eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,6 @@ LABEL BZComponent="$NAME" \ RUN dnf -y --setopt=tsflags=nodocs --setopt=install_weak_deps=false \ install "@python-classroom" && dnf clean all +ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 + CMD ["/bin/bash"]