Skip to content

Commit

Permalink
[batch] Allow hailgenetics/vep images to be public (#13565)
Browse files Browse the repository at this point in the history
  • Loading branch information
jigold committed Sep 7, 2023
1 parent 6cdd8f7 commit 8586275
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions batch/batch/publicly_available_images.py
@@ -1,13 +1,7 @@
from typing import List

from hailtop.batch.hail_genetics_images import HAIL_GENETICS_IMAGES


def publicly_available_images(docker_prefix: str) -> List[str]:
return [
f'{docker_prefix}/hailgenetics/{name}'
for name in (
'hail',
'hailtop',
'genetics',
'python-dill',
)
]
return [docker_prefix + '/' + image_name for image_name in HAIL_GENETICS_IMAGES]

0 comments on commit 8586275

Please sign in to comment.