13 lines
250 B
Docker
13 lines
250 B
Docker
FROM debian:trixie-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
pgpool2 \
|
|
postgresql-client \
|
|
# netcat \
|
|
&& \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|