Skip to content

Commit 09af952

Browse files
authored
Merge pull request #3335 from mhhennig/main
fix: download apptainer images without docker client
2 parents 3921806 + 0c22dab commit 09af952

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/spikeinterface/sorters/container_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __init__(self, mode, container_image, volumes, py_user_base, extra_kwargs):
9999
singularity_image = sif_file
100100
else:
101101

102-
docker_image = self._get_docker_image(container_image)
102+
docker_image = Client.load("docker://" + container_image)
103103
if docker_image and len(docker_image.tags) > 0:
104104
tag = docker_image.tags[0]
105105
print(f"Building singularity image from local docker image: {tag}")

0 commit comments

Comments
 (0)