feat: upgrade postgres client to v17

This commit is contained in:
Michael Mandl 2025-02-01 12:44:25 +01:00
parent fa9e1e4526
commit 32c2b63775
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
2 changed files with 6 additions and 8 deletions

View file

@ -1,4 +1,4 @@
FROM kopia/kopia:0.18
FROM kopia/kopia:0.19
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y gnupg2 wget lsb-release
@ -6,7 +6,7 @@ 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/*
RUN apt-get update && apt-get install -y cron postgresql-client-17 lftp && rm -rf /var/lib/apt/lists/*
ARG KOPIA_CRON_SCHEDULE
ENV KOPIA_CRON_SCHEDULE ${KOPIA_CRON_SCHEDULE}