From 3cfbe1ae10a48143f520fa5dd59b6ea5625a81d0 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 19 Dec 2025 15:41:18 -0600 Subject: [PATCH] Revert "feat: move base containers to trixie (#9535) (#10127)" This reverts commit 7f566673abef2df32c8bf477fda1f6bf63fc0cf9. --- docker/base.Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/base.Dockerfile b/docker/base.Dockerfile index 1b1f5264b83..25016360494 100644 --- a/docker/base.Dockerfile +++ b/docker/base.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-trixie +FROM python:3.12-bookworm LABEL maintainer="IETF Tools Team " ENV DEBIAN_FRONTEND=noninteractive @@ -7,7 +7,7 @@ ENV NODE_MAJOR=16 # Update system packages RUN apt-get update \ && apt-get -qy upgrade \ - && apt-get -y install --no-install-recommends dialog 2>&1 + && apt-get -y install --no-install-recommends apt-utils dialog 2>&1 # Add Node.js Source RUN apt-get install -y --no-install-recommends ca-certificates curl gnupg \ @@ -51,6 +51,7 @@ RUN apt-get update --fix-missing && apt-get install -qy --no-install-recommends libgtk2.0-0 \ libgtk-3-0 \ libnotify-dev \ + libgconf-2-4 \ libgbm-dev \ libnss3 \ libxss1 \ @@ -59,7 +60,7 @@ RUN apt-get update --fix-missing && apt-get install -qy --no-install-recommends libmagic-dev \ libmariadb-dev \ libmemcached-tools \ - libyang3-tools \ + libyang2-tools \ locales \ make \ mariadb-client \