catbase/docker/build.sh

11 lines
272 B
Bash
Raw Normal View History

2020-06-15 18:52:11 +00:00
#!/bin/bash -e
set -e
set -o pipefail
# To be run from the catbase src directory
[[ ! -f main.go ]] && echo "You must run this from the catbase src root." && exit 1
docker build -t velour/catbase -t chrissexton/private:catbase .
docker push chrissexton/private:catbase