]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
docker-compose: Fix locale
authorZack Cerza <zack@redhat.com>
Tue, 4 Jun 2024 20:14:41 +0000 (14:14 -0600)
committerZack Cerza <zack@redhat.com>
Tue, 4 Jun 2024 20:28:14 +0000 (14:28 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
docs/docker-compose/teuthology/Dockerfile

index be17995127480760e17f26eb349a33d6148ac4bd..3be7a8d6ae79c6ac9a7e5a4f9b13ed593120f7e9 100644 (file)
@@ -1,6 +1,7 @@
 FROM ubuntu:22.04
 ARG SSH_PRIVKEY_FILE=id_ed25519
 ENV DEBIAN_FRONTEND=noninteractive
+ENV LANG=C.UTF-8
 RUN apt-get update && \
     apt-get install -y \
     git \
@@ -16,8 +17,10 @@ RUN apt-get update && \
     libvirt-dev \
     libffi-dev \
     libyaml-dev \
+    locales \
     lsb-release && \
-    apt-get clean all
+    apt-get clean all && \
+    locale-gen $LC_ALL
 WORKDIR /teuthology
 COPY requirements.txt requirements.yml ansible.cfg bootstrap /teuthology/
 RUN \