7 lines
219 B
Docker
7 lines
219 B
Docker
FROM docker.io/arm64v8/postgres:16-bookworm
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
postgresql-16-postgis-3 \
|
|
postgresql-16-postgis-3-scripts \
|
|
&& rm -rf /var/lib/apt/lists/*
|