Add 3.14-alpine image

This commit is contained in:
2026-07-08 21:51:25 -03:00
parent f904ea4b06
commit 47c3b57ef4
3 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM python:3.13.2-alpine
FROM python:3.14-alpine
RUN pip install uv
@@ -0,0 +1,5 @@
FROM python:3.13.2-alpine
RUN pip install uv
ENTRYPOINT [ "python3", "-m", "uv", "run", "--no-dev" ]
+4 -4
View File
@@ -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)