Skip to content

Commit

Permalink
building development images now uses daliuge-common:master by default
Browse files Browse the repository at this point in the history
  • Loading branch information
awicenec committed Jul 2, 2021
1 parent 5c3791a commit 0996110
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions daliuge-engine/build_engine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ case "$1" in
exit 1 ;;
"dev")
export VCS_TAG=`git rev-parse --abbrev-ref HEAD | tr '[:upper:]' '[:lower:]'`
echo "Building daliuge-engine development version"
docker build --build-arg VCS_TAG=${VCS_TAG} --no-cache -t icrar/daliuge-engine:${VCS_TAG} -f docker/Dockerfile .
echo "Building daliuge-engine development version using daliuge-common:master"
docker build --build-arg VCS_TAG=master --no-cache -t icrar/daliuge-engine:${VCS_TAG} -f docker/Dockerfile .
echo "Build finished!"
exit 1;;
"casa")
Expand Down
4 changes: 2 additions & 2 deletions daliuge-translator/build_translator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ case "$1" in
exit 1 ;;
"dev")
export VCS_TAG=`git rev-parse --abbrev-ref HEAD | tr '[:upper:]' '[:lower:]'`
echo "Building daliuge-translator development version using tag ${VCS_TAG}"
echo "Building daliuge-translator development version using daliuge-common:master"
# The complete casa and arrow installation is only required for the Plasma streaming
# and should not go much further.
docker build --build-arg VCS_TAG=${VCS_TAG} --no-cache -t icrar/daliuge-translator:${VCS_TAG} -f docker/Dockerfile .
docker build --build-arg VCS_TAG=master --no-cache -t icrar/daliuge-translator:${VCS_TAG} -f docker/Dockerfile .
echo "Build finished!"
exit 1;;
"casa")
Expand Down

0 comments on commit 0996110

Please sign in to comment.