plugin-barman-cloud/containers/Dockerfile.barmanbase
renovate[bot] 6e1cefd5e4
chore(deps): update python docker tag to v3.14
| datasource | package | from | to   |
| ---------- | ------- | ---- | ---- |
| docker     | python  | 3.13 | 3.14 |


Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-09 13:34:46 +00:00

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