diff --git a/Makefile b/Makefile index 2e68295..0885f1f 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,15 @@ DATA_DIR=../PathwayAnalysis .PHONY: build-env build-env: - docker build --no-cache -t oicr/mpbiopath-env:1.0.4-SNAPSHOT -f docker/Dockerfile.env . + docker build --no-cache -t oicr/mpbiopath-env:1.0.4 -f docker/Dockerfile.env . .PHONY: build-app build-app: - docker build --no-cache -t oicr/mpbiopath:1.0.4-SNAPSHOT -f docker/Dockerfile.app . + docker build --no-cache -t oicr/mpbiopath:1.0.4 -f docker/Dockerfile.app . .PHONY: run-bash run-bash: - docker run -v ${PWD}/${DATA_DIR}:/data -v ${PWD}:/app -w /app -it oicr/mpbiopath-env:1.0.4-SNAPSHOT /bin/bash + docker run -v ${PWD}/${DATA_DIR}:/data -v ${PWD}:/app -w /app -it oicr/mpbiopath-env:1.0.4 /bin/bash .PHONY: get-test-expression get-test-expression: @@ -18,4 +18,4 @@ get-test-expression: .PHONY: run-tests run-tests: - docker run -v ${PWD}:/app -w /app -it oicr/mpbiopath-env:1.0.4-SNAPSHOT julia tests/run.jl + docker run -v ${PWD}:/app -w /app -it oicr/mpbiopath-env:1.0.4 julia tests/run.jl