mirror of
https://github.com/oDinZu/natural-earth-vector.git
synced 2025-02-22 00:04:57 -05:00
13 lines
293 B
Docker
13 lines
293 B
Docker
FROM python:3.6.5-stretch
|
|
|
|
RUN apt-get --yes --force-yes update -qq \
|
|
&& apt-get install --yes gdal-bin jq zip 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
|