diff options
author | Matt Rendina <mrendina@stsci.edu> | 2020-06-10 15:50:07 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2020-06-10 15:50:07 -0400 |
commit | 3760e7e9faf234acab2033923e668ee874f09325 (patch) | |
tree | 4d2cde7ceaec7a065a1f9bf2ead868d31e2eaca4 /build.sh | |
parent | 0f4aa966eef67556c04e0cc84db03eab0400ba35 (diff) | |
download | docker-buildsys-pipeline-3760e7e9faf234acab2033923e668ee874f09325.tar.gz |
Update centos version to avoid yum errors;
Update curl arguments
Adjust miniconda installer URL
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,10 +8,10 @@ fi url="$2" if [[ ! $url ]]; then - echo "No spec file specified." + echo "No published snapshot URL specified." exit 1 fi docker build \ -t "astroconda/buildsys-pipeline:${tag}" \ - --build-arg PIPELINE_URL="${url}" $(pwd) + --build-arg SNAPSHOT_URL="${url}" $(pwd) |