From 9f0c0278be46eb448335958fb1825d7e93623aed Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Tue, 13 Jul 2021 20:41:22 +0300 Subject: [PATCH] Set the locale to UTF-8 for Python. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9a8a730..762affe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ # hadolint ignore=DL3006 FROM registry.hub.docker.com/library/centos:7 +ENV LC_ALL en_US.UTF-8 +ENV LANG en_US.UTF-8 # hadolint ignore=DL3013,DL3033 RUN yum group install -y "Development tools" && \ yum install -y \ -- GitLab