Skip to content

Commit

Permalink
fix build images
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper committed Jan 16, 2025
1 parent 359b5d4 commit 5e7e2c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wis2box-ctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ def build_local_images() -> None:
:returns: None.
"""

for image in LOCAL_IMAGES:
print(f'Building {image}')
run(split(f'docker build -t ghcr.io/wmo-im/{image}:local {image}'))
context = image.split('/')[-1]
run(split(f'docker build -t {image}:local {context}'))
return None

def get_resolved_version(base_version: str) -> str:
Expand Down

0 comments on commit 5e7e2c0

Please sign in to comment.