mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 21:23:12 +01:00
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
|