From e7ff3ca43f3bd74a5fd510178a5d9da30bdcd694 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Fri, 22 Mar 2024 18:09:23 +0100 Subject: [PATCH] ci: Update Docker container to Ubuntu 23.10 This removes Python 2. --- .gitlab-ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile index 0e788644f..3d4fcf381 100644 --- a/.gitlab-ci/Dockerfile +++ b/.gitlab-ci/Dockerfile @@ -1,7 +1,7 @@ # The image is also used for libxslt, that's why we need git and # libgcrypt-dev. -FROM ubuntu:22.10 +FROM ubuntu:23.10 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get upgrade -y && \ @@ -10,7 +10,7 @@ RUN apt-get update && \ autoconf automake libtool pkg-config \ make gcc clang llvm \ zlib1g-dev liblzma-dev libgcrypt-dev \ - python2-dev python3-dev \ + python3-dev \ cmake meson WORKDIR /tests RUN curl https://www.w3.org/XML/Test/xmlts20080827.tar.gz |tar xz