From: Zack Cerza Date: Fri, 22 Jul 2022 17:11:46 +0000 (-0600) Subject: Fix locale warning in teuthology image X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fdc-locale-fix;p=teuthology.git Fix locale warning in teuthology image Signed-off-by: Zack Cerza --- diff --git a/docs/docker-compose/teuthology/Dockerfile b/docs/docker-compose/teuthology/Dockerfile index 5587489d17..263317ae1d 100644 --- a/docs/docker-compose/teuthology/Dockerfile +++ b/docs/docker-compose/teuthology/Dockerfile @@ -15,8 +15,10 @@ RUN apt-get update && \ libvirt-dev \ libffi-dev \ libyaml-dev \ - lsb-release && \ - apt-get clean all + lsb-release \ + locales && \ + apt-get clean all && \ + locale-gen en_US.UTF-8 WORKDIR /teuthology COPY requirements.txt bootstrap /teuthology/ RUN \ @@ -40,4 +42,4 @@ RUN \ chmod 600 $HOME/.ssh/${SSH_PRIVKEY_FILE} && \ echo "StrictHostKeyChecking=no" > $HOME/.ssh/config && \ echo "UserKnownHostsFile=/dev/null" >> $HOME/.ssh/config -ENTRYPOINT /teuthology.sh \ No newline at end of file +ENTRYPOINT /teuthology.sh