9 lines
148 B
Bash
Executable file
9 lines
148 B
Bash
Executable file
#!/bin/sh -eu
|
|
|
|
dockerdir="$RUN_DIR"
|
|
image=$(cat "$dockerdir"/.dockerimage)
|
|
tag=latest
|
|
|
|
set -x
|
|
|
|
docker build "$@" --tag "$image":"$tag" "$dockerdir"
|