mirror of
https://github.com/SrIzan10/kanboard.git
synced 2026-05-01 10:45:29 +00:00
16 lines
258 B
Bash
Executable File
16 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=master
|
|
|
|
if [ "$SOURCE_BRANCH" != "" ]; then
|
|
VERSION=$SOURCE_BRANCH
|
|
|
|
if [ "$SOURCE_BRANCH" == "latest" ]; then
|
|
VERSION=master
|
|
fi
|
|
fi
|
|
|
|
echo "Building $VERSION"
|
|
|
|
docker build --build-arg VERSION=$VERSION -t $IMAGE_NAME .
|