Update README and links, build and push images to git.moan.dev
This commit is contained in:
@@ -4,11 +4,13 @@ This repository contains a series of prebuilt images to help you skip some build
|
|||||||
|
|
||||||
## Images
|
## 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.
|
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.
|
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.
|
preinstalled.
|
||||||
|
|
||||||
## Adding a New Image
|
## Adding a New Image
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM python:3.13.2-alpine
|
FROM python:3.14-alpine
|
||||||
|
|
||||||
RUN pip install uv
|
RUN pip install uv
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ To optimize the building and pushing of your images, use the following template:
|
|||||||
|
|
||||||
```dockerfile
|
```dockerfile
|
||||||
# Use the image and tag you need.
|
# 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.
|
# Only copy uv-related files, necessary for syncing and caching.
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|||||||
+1
-1
@@ -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:
|
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}[/].[/]")
|
print(f"[yellow]Building and pushing [bold]{image}[/].[/]")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user