mirror of
https://github.com/oDinZu/natural-earth-vector.git
synced 2025-02-23 00:02:17 -05:00
12 lines
288 B
Docker
12 lines
288 B
Docker
|
FROM python:3.6.5-stretch
|
||
|
RUN apt-get --yes --force-yes update -qq \
|
||
|
&& apt-get install --yes gdal-bin jq mc \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
RUN pip3 install -U SPARQLWrapper
|
||
|
RUN pip3 install -U fiona
|
||
|
RUN pip3 install -U csvtomd
|
||
|
RUN pip3 install -U requests
|
||
|
|
||
|
WORKDIR /ne
|