Files
pgpool/Dockerfile

13 lines
250 B
Docker
Raw Normal View History

2026-02-23 13:30:40 +01:00
FROM debian:trixie-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends \
pgpool2 \
postgresql-client \
2026-02-23 13:32:50 +01:00
# netcat \
&& \
2026-02-23 13:30:40 +01:00
rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/bin/bash"]