7 lines
205 B
Docker
7 lines
205 B
Docker
# https://github.com/JonasProgrammer/docker-postgres-ip4r
|
|
FROM postgres:13.2
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y postgresql-13-ip4r \
|
|
&& rm -rf /var/lib/apt/lists/*
|