Add 3.14-alpine image
This commit is contained in:
+4
-4
@@ -45,11 +45,11 @@ def build_image(variation: str, tag: str) -> bool:
|
||||
]
|
||||
|
||||
if os.system(" && ".join(commands)) == 0:
|
||||
print(f"[green]Successfully built and pushed![/]")
|
||||
print("[green]Successfully built and pushed![/]")
|
||||
return True
|
||||
|
||||
else:
|
||||
print(f"[red]The image couldn't be built or pushed.[/]")
|
||||
print("[red]The image couldn't be built or pushed.[/]")
|
||||
return False
|
||||
|
||||
|
||||
@@ -61,13 +61,13 @@ if tag == "all":
|
||||
successes += 1
|
||||
|
||||
if successes == len(tags):
|
||||
print(f"[green]All tags were successfully built and pushed.[/]")
|
||||
print("[green]All tags were successfully built and pushed.[/]")
|
||||
|
||||
elif successes != 0:
|
||||
print(f"[yellow]Only {successes}/{len(tags)} tags could be built and pushed.[/]")
|
||||
|
||||
else:
|
||||
print(f"[red]No tag could be built nor pushed.[/]")
|
||||
print("[red]No tag could be built nor pushed.[/]")
|
||||
|
||||
else:
|
||||
build_image(variation, tag)
|
||||
|
||||
Reference in New Issue
Block a user