mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
fa50eeac97
* Use `postgis/postgis` image for the DB * Build frontend image inside the docker * Upgrade all packages except styled-components - that one causes some errors * Add yarn.lock to the repo * Add justfile for simplicity * Bump martin docker image version in a few places
12 lines
212 B
Docker
12 lines
212 B
Docker
FROM postgis/postgis:15-3.3
|
|
|
|
RUN set -x \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
wget \
|
|
ca-certificates \
|
|
unzip \
|
|
dos2unix \
|
|
gdal-bin \
|
|
&& rm -rf /var/lib/apt/lists/*
|