diff --git a/.devcontainer/Containerfile b/.devcontainer/Containerfile index f215314b8..16f8f9095 100644 --- a/.devcontainer/Containerfile +++ b/.devcontainer/Containerfile @@ -5,7 +5,7 @@ ENV UV_LINK_MODE=copy WORKDIR /opt -COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.23@sha256:d0a0a753ab981624b49c97abc98821c1c09f4ca69d1ef5cee69c501be3d88479 /uv /uvx /bin/ COPY ./.py-version ./.python-version RUN apt-get update && apt-get install -y iperf3 libusb-dev diff --git a/.uv-version b/.uv-version index a9546b6fe..b76fc2675 100644 --- a/.uv-version +++ b/.uv-version @@ -1 +1 @@ -0.11.21 +0.11.23 diff --git a/python/.devfile/Containerfile b/python/.devfile/Containerfile index bdec50a52..66dbf0e3a 100644 --- a/python/.devfile/Containerfile +++ b/python/.devfile/Containerfile @@ -7,7 +7,7 @@ LABEL summary="devfile jumpstarter developer image" LABEL description="Image with developers tools." LABEL io.k8s.display-name="jumpstarter-developer-universal" -COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.23@sha256:d0a0a753ab981624b49c97abc98821c1c09f4ca69d1ef5cee69c501be3d88479 /uv /uvx /bin/ USER root COPY .py-version /tmp/.py-version diff --git a/python/.devfile/Containerfile.client b/python/.devfile/Containerfile.client index 31654c16f..c40a22a7d 100644 --- a/python/.devfile/Containerfile.client +++ b/python/.devfile/Containerfile.client @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 AS uv-bin +FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.23@sha256:d0a0a753ab981624b49c97abc98821c1c09f4ca69d1ef5cee69c501be3d88479 AS uv-bin FROM --platform=$BUILDPLATFORM registry.fedoraproject.org/fedora:44 AS builder COPY --from=uv-bin /uv /uvx /bin/ RUN dnf install -y make git && \ @@ -20,7 +20,7 @@ LABEL summary="devfile jumpstarter developer image" LABEL description="Devspaces image for consuming jumpstarter as a client" LABEL io.k8s.display-name="jumpstarter-client-developer" -COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.23@sha256:d0a0a753ab981624b49c97abc98821c1c09f4ca69d1ef5cee69c501be3d88479 /uv /uvx /bin/ USER root COPY .py-version /tmp/.py-version diff --git a/python/Containerfile b/python/Containerfile index 590191c3b..46b34da26 100644 --- a/python/Containerfile +++ b/python/Containerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 AS uv-bin +FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.23@sha256:d0a0a753ab981624b49c97abc98821c1c09f4ca69d1ef5cee69c501be3d88479 AS uv-bin FROM --platform=$BUILDPLATFORM registry.fedoraproject.org/fedora:44 AS builder COPY --from=uv-bin /uv /uvx /bin/ RUN dnf install -y make git && \ @@ -6,7 +6,7 @@ RUN dnf install -y make git && \ rm -rf /var/cache/dnf FROM registry.fedoraproject.org/fedora:44 AS product -COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.23@sha256:d0a0a753ab981624b49c97abc98821c1c09f4ca69d1ef5cee69c501be3d88479 /uv /uvx /bin/ RUN dnf install -y python3 ustreamer libusb1 android-tools python3-libgpiod curl \ nftables dnsmasq iproute procps-ng tcpdump && \ dnf clean all && \