mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 18:17:07 +00:00
11 lines
177 B
Bash
11 lines
177 B
Bash
|
#!/usr/bin/env bash
|
||
|
DIR=$( cd $(dirname $0) ; pwd -P )
|
||
|
|
||
|
cd $DIR/../
|
||
|
|
||
|
echo "Publishing docker image..."
|
||
|
sbt clean docker:publish
|
||
|
publish_result=$?
|
||
|
cd $DIR
|
||
|
exit ${publish_result}
|