From 9f7dbb2493e36a8f8084a20765d7cedc486c8496 Mon Sep 17 00:00:00 2001 From: rasbt Date: Mon, 6 Oct 2025 18:31:59 -0500 Subject: [PATCH] Update docker file --- .../.devcontainer/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup/03_optional-docker-environment/.devcontainer/Dockerfile b/setup/03_optional-docker-environment/.devcontainer/Dockerfile index 3e386d7..f410650 100644 --- a/setup/03_optional-docker-environment/.devcontainer/Dockerfile +++ b/setup/03_optional-docker-environment/.devcontainer/Dockerfile @@ -8,9 +8,11 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* # Install uv -ADD https://astral.sh/uv/install.sh /uv-installer.sh -RUN sh /uv-installer.sh && rm /uv-installer.sh -ENV PATH="/root/.local/bin/:$PATH" +RUN curl -fsSL https://astral.sh/uv/install.sh -o uv-installer.sh && \ + sh uv-installer.sh && \ + rm uv-installer.sh + +ENV PATH="/root/.local/bin:$PATH" # Install Python packages COPY requirements.txt requirements.txt