nim-docker/build.sh

15 lines
205 B
Bash
Raw Normal View History

2018-03-14 17:58:58 +00:00
set -ev
buildAndPush() {
docker build -t statusteam/$1 $1
docker push statusteam/$1
}
if [ "$1" = "all" -o "$BUILD_ALL" = "true" ]
then
buildAndPush debian-pre-nim
fi
buildAndPush nim-base