7 lines
167 B
Docker
Raw Normal View History

ARG PGSQL_VERSION
2023-05-17 01:40:25 +02:00
FROM "docker.io/library/postgres:${PGSQL_VERSION}"
RUN apt-get update && \
apt-get -y install iputils-ping && \
rm -rf /var/lib/apt/lists/*