mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 21:23:12 +01:00
| datasource | package | from | to | | ---------- | ------- | ---- | ---- | | docker | python | 3.13 | 3.14 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
8 lines
310 B
Docker
8 lines
310 B
Docker
FROM python:3.14-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
|