diff --git a/deployment/docker/ogn-pg-importer/Dockerfile b/deployment/docker/ogn-pg-importer/Dockerfile index 3215465..e8eecf7 100644 --- a/deployment/docker/ogn-pg-importer/Dockerfile +++ b/deployment/docker/ogn-pg-importer/Dockerfile @@ -1,10 +1,10 @@ -# We build from the postgis image because it contains all required gdal scripts FROM alpine as builder RUN apk update && apk add wget && rm -rf /var/cache/apk/* RUN wget --no-check-certificate -O borders.zip http://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip RUN unzip borders.zip -FROM mdillon/postgis +# We use the postgis image because it includes shp2pgsql +FROM mdillon/postgis:11 RUN mkdir /extra WORKDIR /extra COPY --from=builder /TM_* /extra/