feat: upgrade to postgresql 15

main
mandlm 2024-03-04 14:47:42 +01:00
parent 786e1b5fc4
commit 2e54c4f3a7
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
FROM kopia/kopia:0.15.0
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y cron postgresql-client lftp && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y gnupg2 wget lsb-release
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
RUN apt-get update && apt-get install -y cron postgresql-client-15 lftp && rm -rf /var/lib/apt/lists/*
ARG KOPIA_CRON_SCHEDULE
ENV KOPIA_CRON_SCHEDULE ${KOPIA_CRON_SCHEDULE}