]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
containers/teuthology-dev: Update to noble
authorZack Cerza <zack@redhat.com>
Tue, 4 Jun 2024 19:49:47 +0000 (13:49 -0600)
committerZack Cerza <zack@redhat.com>
Tue, 4 Jun 2024 20:27:55 +0000 (14:27 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
containers/teuthology-dev/Dockerfile

index b39e0cdf3bb875d0a10e3fac9201b7a11375112c..34263045bc18c86a91eb1a1abcfa4972c7a71af9 100644 (file)
@@ -1,5 +1,6 @@
-FROM ubuntu:focal
+FROM ubuntu:noble
 ENV DEBIAN_FRONTEND=noninteractive
+ENV LANG=C.UTF-8
 RUN apt-get update && \
     apt-get install -y \
     git \
@@ -14,8 +15,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 \