mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 23:21:59 +01:00
e95e8496a7
Signed-off-by: Janos SUTO <sj@acts.hu>
12 lines
234 B
Bash
Executable File
12 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
IMAGE_NAME="sutoj/piler:1.3.12"
|
|
|
|
if [[ $# -ne 1 ]]; then echo "ERROR: missing package name" 1>&2; exit 1; fi
|
|
|
|
docker build --pull --build-arg PACKAGE="$1" -t "$IMAGE_NAME" .
|