update container references

This commit is contained in:
Chris Wright 2021-02-09 15:33:58 +00:00
parent 0e0a700406
commit b190aabaae
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
ARG BASEIMAGE=epi2melabs/base-workflow-image:latest ARG BASEIMAGE=ontresearch/base-workflow-image:v0.1.0
FROM $BASEIMAGE FROM $BASEIMAGE
# Minimal install for example purposes # Minimal install for example purposes

View File

@ -14,10 +14,10 @@ alternative software isolation method to Docker.
The Docker container image can be built with the following command: The Docker container image can be built with the following command:
```bash ```bash
CONTAINER_TAG=template-workflow CONTAINER_TAG=ontresearch/template-workflow
docker build \ docker build \
-t ${CONTAINER_TAG} -f Dockerfile \ -t ${CONTAINER_TAG} -f Dockerfile \
--build-arg BASEIMAGE=epi2melabs/base-workflow-image:latest \ --build-arg BASEIMAGE=ontresearch/base-workflow-image:v0.1.0 \
. .
``` ```

View File

@ -22,7 +22,7 @@ profiles {
} }
process { process {
withLabel:pysam { withLabel:pysam {
container = 'workflow-template:latest' container = 'ontresearch/workflow-template:latest'
} }
} }
} }