Skip to content

Commit 4cbb1c7

Browse files
author
Bruno Grande
authored
Merge pull request #21 from Sage-Bionetworks-Workflows/bgrande/avoid-docker-hub
Copy image to Quay.io to Docker Hub rate limits
2 parents 1d77493 + 600528b commit 4cbb1c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dcqc/tests/tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def generate_process(self) -> Process:
101101
path = file.local_path.as_posix()
102102
command_args = ["tiffinfo", path]
103103
process = Process(
104-
container="quay.io/brunograndephd/libtiff:2.0",
104+
container="quay.io/sagebionetworks/libtiff:2.0",
105105
command_args=command_args,
106106
)
107107
return process
@@ -121,7 +121,7 @@ def generate_process(self) -> Process:
121121
path,
122122
]
123123
process = Process(
124-
container="openmicroscopy/bftools:latest",
124+
container="quay.io/sagebionetworks/bftools:latest",
125125
command_args=command_args,
126126
)
127127
return process
@@ -138,7 +138,7 @@ def generate_process(self) -> Process:
138138
path,
139139
]
140140
process = Process(
141-
container="openmicroscopy/bftools:latest",
141+
container="quay.io/sagebionetworks/bftools:latest",
142142
command_args=command_args,
143143
)
144144
return process

0 commit comments

Comments
 (0)