mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 21:23:12 +01:00
Now we build an image every week with the base packages required for the sidecar, the idea is to reduce the amount of time of every CI process requires to run. Signed-off-by: Jonathan Gonzalez V. <jonathan.gonzalez@enterprisedb.com>
7 lines
300 B
Docker
7 lines
300 B
Docker
FROM python:3.13-slim AS pythonbuilder
|
|
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 barman[azure,cloud,google,snappy]==3.11.1 setuptools
|