19 lines
643 B
Text
19 lines
643 B
Text
|
FROM debian:stable
|
||
|
|
||
|
RUN apt-get -y update && apt-get install -y git osmium-tool osmosis postgis pgadmin3 postgresql-contrib postgresql-client postgresql-postgis postgresql python-pip python3-venv python3-dev curl sudo flightgear
|
||
|
|
||
|
RUN git clone https://gitlab.com/merspieler/easy-osm2city.git
|
||
|
|
||
|
WORKDIR /easy-osm2city
|
||
|
|
||
|
# Do some things from the install script manually
|
||
|
RUN git clone https://gitlab.com/merspieler/osm2city-scripts.git scripts
|
||
|
RUN git clone https://gitlab.com/osm2city/osm2city.git
|
||
|
RUN git clone https://gitlab.com/osm2city/osm2city-data.git
|
||
|
RUN mkdir -p pbf && mkdir -p projects
|
||
|
|
||
|
RUN ./create-venv
|
||
|
|
||
|
|
||
|
ENTRYPOINT sleep 10000000000
|