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