random fixes

This commit is contained in:
Anton Evangelatov 2020-06-23 11:38:01 +02:00 committed by Yusef Napora
parent 0bfaa46ce7
commit 306efa66c7
2 changed files with 14 additions and 5 deletions

View File

@ -1,7 +1,4 @@
all: docker
docker:
docker build . -t "iptestground/composer:latest"
all: docker
docker build -t "iptestground/composer:latest" .

View File

@ -4,6 +4,18 @@
# plan manifests from the user's local filesystem into a temporary
# directory that's bind-mounted into the container.
set -o errexit
set -o pipefail
set -e
err_report() {
echo "Error on line $1"
}
trap 'err_report $LINENO' ERR
image_name="iptestground/composer"
image_tag="latest"
image_full_name="$image_name:$image_tag"