Skip to content

Commit

Permalink
docker-compose: Fix locale
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Cerza <[email protected]>
  • Loading branch information
zmc committed Jun 4, 2024
1 parent 4d646f0 commit 366aafe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/docker-compose/teuthology/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM ubuntu:22.04
ARG SSH_PRIVKEY_FILE=id_ed25519
ENV DEBIAN_FRONTEND=noninteractive
ENV LC_ALL=C.UTF-8
RUN apt-get update && \
apt-get install -y \
git \
Expand All @@ -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 \
Expand Down

0 comments on commit 366aafe

Please sign in to comment.