16 lines
208 B
Bash
Executable File
16 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
tag=$1
|
|
if [ -z "$tag" ]
|
|
then
|
|
tag=latest
|
|
fi
|
|
|
|
. build.sh
|
|
|
|
docker build -t fission-bundle .
|
|
docker tag fission-bundle fission/fission-bundle:$tag
|
|
docker push fission/fission-bundle:$tag
|