blob: 4c3745f540fb27591f3908868c705441907a43a9 [file] [log] [blame]
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
cd $WORKSPACE
app=nolabs-verify-${BUILD_ID}
echo "Info: Building the container image nolabs-verify-${BUILD_ID}"
echo "-------------------------------------------------------------------------"
docker build -t $app .
echo "-------------------------------------------------------------------------"
echo "Info: Build successful!"
docker rmi -f $app > /dev/null