Closed sirgreender closed 1 month ago
FROM debian:11
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 bullseye-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
ENV LANG en_US.utf8
ADD . /control
Thanks for reporting and also for the workaround.
I created a Bug report here:
https://community.openproject.org/projects/openproject/work_packages/58353/activity
And added a PR that should fix this bug.
On branch stable/14 9a5552aad
Following the Upgrade procedure i got this
Apparently there's no release candidate for buster in the http://apt.postgresql.org/pub/repos/apt buster-pgdg
I solved upgrading control/Dockerfile to use debian:11