From fe5d630dc634f698851858a4a55cc354459cc690 Mon Sep 17 00:00:00 2001 From: Imahn Shekhzadeh Date: Sun, 9 Feb 2025 16:11:31 +0100 Subject: [PATCH] add pinning of `uv` version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9b731d4..e35b2b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY setup.py . COPY pyproject.toml . # Install `uv` acc. to the instructions https://docs.astral.sh/uv/guides/integration/docker/#installing-uv -ADD https://astral.sh/uv/0.5.28/install.sh /uv-installer.sh +ADD https://astral.sh/uv/0.5.29/install.sh /uv-installer.sh RUN sh /uv-installer.sh && rm /uv-installer.sh ENV PATH="/root/.local/bin/:$PATH" RUN uv python install 3.10 && \