From 7d812f8112c32c8aa3760f2c45b2b500a4b39b79 Mon Sep 17 00:00:00 2001 From: Maxime Guyot Date: Fri, 10 Apr 2020 10:25:46 +0200 Subject: [PATCH] Set LANG in Dockerfile (#5929) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index aeeb54657..81bc9debf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,3 +16,6 @@ COPY . . RUN /usr/bin/python3 -m pip install pip -U && /usr/bin/python3 -m pip install -r tests/requirements.txt && python3 -m pip install -r requirements.txt && update-alternatives --install /usr/bin/python python /usr/bin/python3 1 RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.14.4/bin/linux/amd64/kubectl \ && chmod a+x kubectl && cp kubectl /usr/local/bin/kubectl + +# Some tools like yamllint need this +ENV LANG=C.UTF-8