piler/docker/build.sh
Janos SUTO 5886e37f99 Updated docker image tag
Signed-off-by: Janos SUTO <sj@acts.hu>
2021-02-23 11:52:11 +01:00

12 lines
234 B
Bash
Executable File

#!/bin/bash
set -o errexit
set -o pipefail
set -o nounset
IMAGE_NAME="sutoj/piler:1.3.11"
if [[ $# -ne 1 ]]; then echo "ERROR: missing package name" 1>&2; exit 1; fi
docker build --pull --build-arg PACKAGE="$1" -t "$IMAGE_NAME" .