From f18e2c0792428b78ca328b21b0cf6bcad4d1289e Mon Sep 17 00:00:00 2001 From: Rafael Bradley Date: Thu, 16 Jul 2026 00:28:29 -0300 Subject: [PATCH] Update README and links, build and push images to git.moan.dev --- README.md | 8 +++++--- dockerfiles/with-uv/3.14-alpine/Dockerfile | 2 +- dockerfiles/with-uv/USAGE.md | 2 +- scripts/push.py | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8b4af0e..9521023 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,13 @@ This repository contains a series of prebuilt images to help you skip some build ## Images -- `repository.nyeki.dev/docker/python/with-uv:3.13.2-alpine`: Python 3.13.2 Alpine with UV +- `git.moan.dev/docker/python/with-uv:3.14-alpine`: Python 3.14 Alpine with UV preinstalled. -- `repository.nyeki.dev/docker/python/with-uv:3.12-alpine`: Python 3.12 Alpine with UV +- `git.moan.dev/docker/python/with-uv:3.13.2-alpine`: Python 3.13.2 Alpine with UV preinstalled. -- `repository.nyeki.dev/docker/python/with-uv:3.12-slim`: Python 3.12 Slim with UV +- `git.moan.dev/docker/python/with-uv:3.12-alpine`: Python 3.12 Alpine with UV + preinstalled. +- `git.moan.dev/docker/python/with-uv:3.12-slim`: Python 3.12 Slim with UV preinstalled. ## Adding a New Image diff --git a/dockerfiles/with-uv/3.14-alpine/Dockerfile b/dockerfiles/with-uv/3.14-alpine/Dockerfile index 484c10f..fbbbc8b 100644 --- a/dockerfiles/with-uv/3.14-alpine/Dockerfile +++ b/dockerfiles/with-uv/3.14-alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.2-alpine +FROM python:3.14-alpine RUN pip install uv diff --git a/dockerfiles/with-uv/USAGE.md b/dockerfiles/with-uv/USAGE.md index 26b8f8c..267e857 100644 --- a/dockerfiles/with-uv/USAGE.md +++ b/dockerfiles/with-uv/USAGE.md @@ -4,7 +4,7 @@ To optimize the building and pushing of your images, use the following template: ```dockerfile # Use the image and tag you need. -FROM registry.nyeki.dev/docker/python/with-uv:3.13.2-alpine +FROM git.moan.dev/docker/python/with-uv:3.13.2-alpine # Only copy uv-related files, necessary for syncing and caching. WORKDIR /app diff --git a/scripts/push.py b/scripts/push.py index 4027127..970987b 100644 --- a/scripts/push.py +++ b/scripts/push.py @@ -34,7 +34,7 @@ tag = Prompt.ask("What Python tag do you want to build?", choices=tags, default= def build_image(variation: str, tag: str) -> bool: - image = f"registry.nyeki.dev/docker/python/{variation}:{tag}" + image = f"git.moan.dev/docker/python/{variation}:{tag}" print(f"[yellow]Building and pushing [bold]{image}[/].[/]")