Skip to content
Snippets Groups Projects
Commit 1c58dfef authored by Liz Rice's avatar Liz Rice
Browse files

Revert "Add Docker build & push to Travis job" - it's already being built on Docker Hub!

This reverts commit b339a753.
parent b339a753
No related branches found
No related tags found
No related merge requests found
sudo: true
services:
- docker
language: go
install:
- go get github.com/aquasecurity/kube-bench
script:
- go test ./...
- go build -o kube-bench .
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker build -t aquasec/kube-bench .;
docker push aquasec/kube-bench;
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment