Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Robert Resch
b0b7ec887e
Optimize uv installation in docker container 2024-09-02 20:28:39 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ ENV \
ARG QEMU_CPU
# Install uv
RUN pip3 install uv==0.2.27
COPY --from=ghcr.io/astral-sh/uv:0.2.27 /uv /bin/uv
WORKDIR /usr/src

View file

@ -25,7 +25,7 @@ ENV \
ARG QEMU_CPU
# Install uv
RUN pip3 install uv=={uv}
COPY --from=ghcr.io/astral-sh/uv:{uv} /uv /bin/uv
WORKDIR /usr/src