We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee5006 commit eabb7e3Copy full SHA for eabb7e3
.ci/ci_lib.py
@@ -180,7 +180,11 @@ def get_docker_hostname():
180
181
182
def image_for_distro(distro):
183
- return 'mitogen/%s-test' % (distro.partition('-')[0],)
+ """Return the container image name or path for a test distro name.
184
+
185
+ The returned value is suitable for use with `docker pull`.
186
+ """
187
+ return 'public.ecr.aws/n5z0e8q9/%s-test' % (distro.partition('-')[0],)
188
189
190
def make_containers(name_prefix='', port_offset=0):
0 commit comments