2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
vinyldns/bin/docker-publish-api.sh
2018-07-31 14:26:07 -04:00

11 lines
177 B
Bash
Executable File

#!/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}