From 0a06a24d10bc148b3b04fa0584decbacb8f95052 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 28 Feb 2019 08:51:24 -0500 Subject: [PATCH] ci: nitlang/nit-ci docker image runs in UTF8 Signed-off-by: Jean Privat --- misc/docker/ci/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/misc/docker/ci/Dockerfile b/misc/docker/ci/Dockerfile index 000c0c1..e4ba62b 100644 --- a/misc/docker/ci/Dockerfile +++ b/misc/docker/ci/Dockerfile @@ -108,3 +108,6 @@ RUN pip3 install junit2html # Prepare to install npm (npm is not packaged for debian:stretch) RUN npm install pug-cli -g + +# Some tools, like gradle, need an explitit UTF8 environement +ENV LANG C.UTF-8 -- 1.7.9.5