Skip to content

Commit 88c879d

Browse files
committed
fixed docker image lower/upper case error
1 parent 88d8526 commit 88c879d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commit0/harness/execution_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def __init__(
165165

166166
# the image must exist on dockerhub
167167
reponame = spec.repo.split("/")[-1]
168-
image_name = f"wentingzhao/{reponame}:latest"
168+
image_name = f"wentingzhao/{reponame}:latest".lower()
169169
image = modal.Image.from_registry(image_name)
170170
if files_to_copy:
171171
for _, f in files_to_copy.items():

0 commit comments

Comments
 (0)