mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-27 13:47:38 +02:00
19 lines
227 B
Bash
Executable File
19 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
version=$1
|
|
|
|
if [[ $version == "" ]]; then
|
|
echo "Please specify version"
|
|
echo "./publish.sh <version e.g. 1.0>"
|
|
exit 1
|
|
fi
|
|
|
|
tag=sfja/h5-mst-ci:$version
|
|
|
|
set -xe
|
|
|
|
docker build -t $tag .
|
|
|
|
docker push $tag
|
|
|