From b190aabaaee5bbcc3273d555716c1b4193cc2ce9 Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Tue, 9 Feb 2021 15:33:58 +0000 Subject: [PATCH] update container references --- Dockerfile | 2 +- README.md | 4 ++-- nextflow.config | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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' } } }