From f5a4a39e51ee437f47cbb9cd4522949c6336cc06 Mon Sep 17 00:00:00 2001 From: David McClosky Date: Mon, 26 Feb 2024 17:13:03 -1000 Subject: [PATCH] Move to publicly accessible URL for Docker image Most people don't have ssh access to the public Aeromancy repo, so we shouldn't use it here. --- src/aeromancy/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aeromancy/runner.py b/src/aeromancy/runner.py index 93a9768..059946b 100644 --- a/src/aeromancy/runner.py +++ b/src/aeromancy/runner.py @@ -110,7 +110,7 @@ def build_docker( ( "--tag", docker_tag, - "ssh://git@github.com/quant-aq/aeromancy.git#v0.1.0:docker", + "https://github.com/quant-aq/aeromancy.git#v0.1.0:docker", ), ) docker_command = " ".join(docker_commmand_pieces)