Bug/58353 docker build the control plane fails (#98)

* fix #97 update controle plane container to debian:12

* add backups folder to gitignore
This commit is contained in:
Tizian Rößler
2024-10-10 13:54:50 +02:00
committed by GitHub
parent 9a5552aad0
commit 84859a0bd4
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.env
docker-compose.override.yml
backups/

View File

@@ -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