From 84859a0bd432866bb598bbbbaef089e815e75a66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tizian=20R=C3=B6=C3=9Fler?= <146930198+tiroessler@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:54:50 +0200 Subject: [PATCH] Bug/58353 docker build the control plane fails (#98) * fix #97 update controle plane container to debian:12 * add backups folder to gitignore --- .gitignore | 1 + control/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 08eb01f..d4284de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .env docker-compose.override.yml +backups/ diff --git a/control/Dockerfile b/control/Dockerfile index 69154b9..a90a259 100644 --- a/control/Dockerfile +++ b/control/Dockerfile @@ -1,8 +1,8 @@ -FROM debian:10 +FROM debian:12 RUN apt-get update -qq && apt-get install wget gnupg2 -y && rm -rf /var/lib/apt/lists/* RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - -RUN echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list +RUN echo "deb http://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" > /etc/apt/sources.list.d/pgdg.list RUN apt-get update -qq && apt-get install postgresql-9.6 postgresql-10 postgresql-13 -y && rm -rf /var/lib/apt/lists/* RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8