From d2f605f5bd063ee56330b927f66a99525bfa6102 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 4 Jun 2024 13:49:47 -0600 Subject: [PATCH] containers/teuthology-dev: Update to noble Signed-off-by: Zack Cerza --- containers/teuthology-dev/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/containers/teuthology-dev/Dockerfile b/containers/teuthology-dev/Dockerfile index b39e0cdf3..34263045b 100644 --- a/containers/teuthology-dev/Dockerfile +++ b/containers/teuthology-dev/Dockerfile @@ -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 \ -- 2.47.3