Files
matchbox/scripts/dev/travis-docker-push
Diego Pontoriero 948bdee165 scripts: fix shebangs.
/bin/bash is not an LSB path.
2018-01-09 17:59:15 -08:00

11 lines
189 B
Bash
Executable File

#!/usr/bin/env bash
# Travis Deploy Docker Push
set -e
docker info
GOOS=linux make build
make docker-image
docker login -u="$DOCKER_USERNAME" -p=$DOCKER_PASSWORD quay.io
make docker-push