Skip to content

Commit 01e4fec

Browse files
committed
Ubuntu: Update Rust & UV
1 parent a347e7d commit 01e4fec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ubuntu-22.04/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ RUN apt-get update -q && apt-get -y -q install --no-install-recommends \
5151

5252
# Install Rust
5353
# Make .cargo/ writable for everyone to allow running the container as non-root.
54-
ARG RUST_VERSION="1.87.0"
54+
ARG RUST_VERSION="1.92.0"
5555
ENV RUSTUP_HOME="/.rustup" \
5656
CARGO_HOME="/.cargo" \
5757
PATH="/.cargo/bin:$PATH"
@@ -64,7 +64,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
6464
# Set its python directory to a known, user-writable path to allow accessing the
6565
# python versions installed during docker build from within CI runs which are
6666
# run as non-root.
67-
ARG UV_VERSION="0.7.13"
67+
ARG UV_VERSION="0.9.21"
6868
ARG UV_URL="https://github.com/astral-sh/uv/releases/download/$UV_VERSION/uv-x86_64-unknown-linux-gnu.tar.gz"
6969
ENV UV_PYTHON_INSTALL_DIR="/.uv/python"
7070
RUN wget -c "${UV_URL}" -O /tmp.tar.gz \

ubuntu-24.04/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ RUN apt-get update -q && apt-get -y -q install --no-install-recommends \
5151

5252
# Install Rust
5353
# Make .cargo/ writable for everyone to allow running the container as non-root.
54-
ARG RUST_VERSION="1.87.0"
54+
ARG RUST_VERSION="1.92.0"
5555
ENV RUSTUP_HOME="/.rustup" \
5656
CARGO_HOME="/.cargo" \
5757
PATH="/.cargo/bin:$PATH"
@@ -64,7 +64,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
6464
# Set its python directory to a known, user-writable path to allow accessing the
6565
# python versions installed during docker build from within CI runs which are
6666
# run as non-root.
67-
ARG UV_VERSION="0.7.13"
67+
ARG UV_VERSION="0.9.21"
6868
ARG UV_URL="https://github.com/astral-sh/uv/releases/download/$UV_VERSION/uv-x86_64-unknown-linux-gnu.tar.gz"
6969
ENV UV_PYTHON_INSTALL_DIR="/.uv/python"
7070
RUN wget -c "${UV_URL}" -O /tmp.tar.gz \

0 commit comments

Comments
 (0)