https://github.com/dice-group/gerbil
Raw File
Tip revision: 1de6f2c01a6fb0bb10debe16866aadaed17b3b58 authored by Michael Röder on 04 April 2024, 15:07:29 UTC
Fixed the definition of IndEL datasets.
Tip revision: 1de6f2c
docker_build.sh
#!/bin/bash

export PROJECT="gerbil"
VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.3.1:exec)

# build the docker container
docker build --no-cache -t philippkuntschik/$PROJECT .

docker tag philippkuntschik/$PROJECT philippkuntschik/$PROJECT:$VERSION
docker tag philippkuntschik/$PROJECT philippkuntschik/$PROJECT:latest

# upload the image
if [[ $1 == "--upload" ]]
  then
    echo 'uploading...'
    sudo docker push philippkuntschik/$PROJECT:$VERSION
    sudo docker push philippkuntschik/$PROJECT:latest
fi
back to top