mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 13:23:09 +01:00
We build a new image every week with the necessary base packages for the sidecar. This aims to reduce the time required for each CI process to run. Signed-off-by: Jonathan Gonzalez V. <jonathan.gonzalez@enterprisedb.com> Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com> Co-authored-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
8 lines
310 B
Docker
8 lines
310 B
Docker
FROM python:3.13-slim-bookworm
|
|
COPY containers/sidecar-requirements.txt .
|
|
RUN apt-get update && \
|
|
apt-get install -y postgresql-common build-essential && \
|
|
/usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y && \
|
|
apt-get install -y libpq-dev && \
|
|
pip install -r sidecar-requirements.txt
|