31 أسطر
1.2 KiB
Bash
31 أسطر
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
echo "Cloning graphhopper"
|
|
git clone https://github.com/graphhopper/graphhopper.git
|
|
cd graphhopper
|
|
echo "Downloading Dockerfile and graphhopper.sh"
|
|
curl -L https://raw.githubusercontent.com/IsraelHikingMap/graphhopper-docker-image-push/main/Dockerfile > Dockerfile
|
|
curl -L https://raw.githubusercontent.com/IsraelHikingMap/graphhopper-docker-image-push/main/graphhopper.sh > graphhopper.sh
|
|
echo "Building docker image"
|
|
docker build . -t israelhikingmap/graphhopper:latest
|
|
docker login --username $DOCKERHUB_USER --password $DOCKERHUB_TOKEN
|
|
echo "Publishing docker image"
|
|
docker push israelhikingmap/graphhopper:latest
|
|
|
|
TAG=`git for-each-ref --sort=committerdate refs/tags | tail -n 1 | cut -d "/" -f3`
|
|
if docker manifest inspect israelhikingmap/graphhopper:$TAG >/dev/null; then
|
|
echo "No need to publish existing version: $TAG";
|
|
else
|
|
mv Dockerfile ../Dockerfile
|
|
mv graphhopper.sh ../graphhopper.sh
|
|
git checkout tags/$TAG
|
|
mv ../Dockerfile Dockerfile
|
|
mv ../graphhopper.sh graphhopper.sh
|
|
echo "Building docker image for tag: $TAG"
|
|
docker build . -t israelhikingmap/graphhopper:$TAG
|
|
echo "Publishing docker image for tag: $TAG"
|
|
docker push israelhikingmap/graphhopper:$TAG
|
|
fi
|
|
|
|
|