From 1f5ba850421eeabefca3683600055066913e6ac8 Mon Sep 17 00:00:00 2001 From: Chris Yan Date: Thu, 21 Oct 2021 16:49:06 -0700 Subject: [PATCH] Workaround Ansible install via pip and py36 Signed-off-by: Chris Yan --- .jenkins/infrastructure/docker/dockerfiles/linux/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.jenkins/infrastructure/docker/dockerfiles/linux/Dockerfile b/.jenkins/infrastructure/docker/dockerfiles/linux/Dockerfile index 71cd731a55..3b1bddadcf 100644 --- a/.jenkins/infrastructure/docker/dockerfiles/linux/Dockerfile +++ b/.jenkins/infrastructure/docker/dockerfiles/linux/Dockerfile @@ -57,6 +57,10 @@ ARG GNAME=jenkins ARG UID=1000 ARG GID=1000 +# Workaround for https://githubmemory.com/repo/pypa/pip/issues/10219 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 + # Install essential packages RUN apt-get update && \ apt-get -y --no-install-recommends upgrade && \