mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
17 lines
342 B
Docker
17 lines
342 B
Docker
FROM postgres:12
|
|
|
|
ENV PG_MAJOR=12
|
|
ENV POSTGIS_MAJOR=3
|
|
|
|
RUN set -x \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \
|
|
postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR-scripts \
|
|
wget \
|
|
ca-certificates \
|
|
unzip \
|
|
dos2unix \
|
|
gdal-bin \
|
|
&& rm -rf /var/lib/apt/lists/*
|