Skip to content

Commit 3ffe6df

Browse files
committed
fix: download apptainer images without docker client
1 parent 3921806 commit 3ffe6df

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)