From d286198ce4d26ff5151c9b937058b4c223aa95f2 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 9 Jun 2024 15:18:35 -0500 Subject: [PATCH] fix: ensure uv is installed for docker image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 623f48d7..c0e4caac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,9 @@ RUN --mount=type=cache,mode=0755,id=apt-$TARGETPLATFORM,target=/var/lib/apt/list apt-get update -qq \ && apt-get install -yqq build-essential git +RUN --mount=type=cache,mode=0755,id=pip-$TARGETPLATFORM,target=/root/.cache \ + pip install --root-user-action=ignore -U pip uv + FROM base as prod ARG UIPROTECT_VERSION