Skip to content

Commit

Permalink
Remove hard-coded path to project directory
Browse files Browse the repository at this point in the history
  • Loading branch information
scottwittenburg committed Aug 27, 2019
1 parent 1c7db0b commit 202af22
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rebuild-stack.sh
@@ -1,6 +1,6 @@
#!/bin/bash

PROJECT_DIRECTORY="/data/scott/projects/hpccloud-services"
PROJECT_DIRECTORY="$(dirname $0)"

# Exit as soon as any of these builds fail
set -e
Expand Down Expand Up @@ -41,7 +41,8 @@ docker build --rm --no-cache --file docker/visualize-osmesa/Dockerfile -t kitwar
#----------------------------------------------------------------------------

echo -e "\n\n\nBuilding kitware/hpccloud:visualize-egl \n\n\n"
docker build --rm --no-cache --file docker/visualize-egl/Dockerfile --build-arg PARAVIEW_TAG=v5.6.1 --build-arg SUPERBUILD_TAG=v5.6.1 -t kitware/hpccloud:visualize-egl .
# docker build --rm --no-cache --file docker/visualize-egl/Dockerfile --build-arg PARAVIEW_TAG=v5.6.1 --build-arg SUPERBUILD_TAG=v5.6.1 -t kitware/hpccloud:visualize-egl .
docker build --rm --no-cache --file docker/visualize-egl/Dockerfile -t kitware/hpccloud:visualize-egl .

#----------------------------------------------------------------------------
# compute-pyfr
Expand Down

0 comments on commit 202af22

Please sign in to comment.