- Remove dependency on github download - Add `github/build.sh` for local builds - Simplify gtaphhopper build - Simplify handling of `graphhopper.sh` and `config-example.yml`
7 أسطر
179 B
Bash
7 أسطر
179 B
Bash
#!/bin/bash
|
|
|
|
echo "Cloning graphhopper"
|
|
git clone https://github.com/graphhopper/graphhopper.git
|
|
echo "Building docker image"
|
|
docker build . -t israelhikingmap/graphhopper:latest
|