aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-03-23 13:43:43 +0000
committerGravatar Chris Lovering <[email protected]>2025-03-23 13:43:43 +0000
commit5f33af801e073f45efb33f45255e748283cc6491 (patch)
treee8edc5b4fd61f85ff60cfb8fbf7be0e45e62c0fe
parentRegister docker as a dependabot target for updates (diff)
Pin uv in dockerfile to 0.5
This will be udapted by dependabot as required
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index da922de..b7137b5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
ARG python_version=3.13-slim
FROM python:$python_version AS builder
-COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/
+COPY --from=ghcr.io/astral-sh/uv:0.5 /uv /bin/
ENV UV_COMPILE_BYTECODE=1 \
UV_LINK_MODE=copy