From 52329ec7933bec9d7aa417aa8206725a9e7f5024 Mon Sep 17 00:00:00 2001 From: Rafael Bradley Date: Sun, 9 Mar 2025 15:52:34 -0300 Subject: [PATCH] Initial commit --- .vscode/settings.json | 5 +++++ 3.13.2/Dockerfile | 3 +++ README.md | 7 +++++++ 3 files changed, 15 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 3.13.2/Dockerfile create mode 100644 README.md diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1a1b63e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "conventionalCommits.scopes": [ + "3.13.2-alpine_with-uv" + ] +} \ No newline at end of file diff --git a/3.13.2/Dockerfile b/3.13.2/Dockerfile new file mode 100644 index 0000000..aaad50e --- /dev/null +++ b/3.13.2/Dockerfile @@ -0,0 +1,3 @@ +FROM python:3.13.2-alpine + +RUN pip install uv diff --git a/README.md b/README.md new file mode 100644 index 0000000..505f16c --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Python Docker + +This repository contains a series of prebuilt images to help you skip some build steps. + +## Images + +- `repository.nyeki.dev/docker/python/with-uv:3.13.2-alpine`: Python 3.13.2 Alpine with UV preinstalled.