blob: 5761f81af748311b502be7f5249cd70cb3c9408d [file] [log] [blame]
Fatih Degirmencifead03e2019-09-06 12:40:09 +02001#!/bin/bash
2
3set -o errexit
4set -o nounset
5set -o pipefail
6
7cd $WORKSPACE
8app=nolabs-verify-${BUILD_ID}
9echo "Building the container image nolabs-verify-${BUILD_ID}"
10echo "-------------------------------------------------------------------------"
11docker build -t $app .
12echo "-------------------------------------------------------------------------"
13echo "Build successful!"
14docker rmi -f $app > /dev/null