diff --git a/Dockerfile b/Dockerfile index 5a30f53..a8ba35e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASEIMAGE=epi2melabs/base-workflow-image:latest +ARG BASEIMAGE=ontresearch/base-workflow-image:v0.1.0 FROM $BASEIMAGE # Minimal install for example purposes diff --git a/README.md b/README.md index 9b47574..209b40c 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ alternative software isolation method to Docker. The Docker container image can be built with the following command: ```bash -CONTAINER_TAG=template-workflow +CONTAINER_TAG=ontresearch/template-workflow docker build \ -t ${CONTAINER_TAG} -f Dockerfile \ - --build-arg BASEIMAGE=epi2melabs/base-workflow-image:latest \ + --build-arg BASEIMAGE=ontresearch/base-workflow-image:v0.1.0 \ . ``` diff --git a/nextflow.config b/nextflow.config index d70566b..2c8eb72 100644 --- a/nextflow.config +++ b/nextflow.config @@ -22,7 +22,7 @@ profiles { } process { withLabel:pysam { - container = 'workflow-template:latest' + container = 'ontresearch/workflow-template:latest' } } }