diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-12-04 16:22:46 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-12-04 16:22:46 -0500 |
commit | 2119eeef5d80ae1c14fdd1c45a9d81908ce14e3d (patch) | |
tree | a7b6dee647d7c0870885f6c17caddf2422a0281b /build.sh | |
download | docker-pipeline-2119eeef5d80ae1c14fdd1c45a9d81908ce14e3d.tar.gz |
Initial commit
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..6c7a5f7 --- /dev/null +++ b/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash +PROJECT=astroconda/pipeline +PIPELINE="${1}" +if [[ -z ${PIPELINE} ]]; then + echo "No pipeline specified. [e.g. hst-TREE, jwst-TREE, ...]" + exit 1 +fi + +docker build -t ${PROJECT}:${PIPELINE} --build-arg PIPELINE=${PIPELINE} . |