Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# forward-compatible direction — an older build glibc links fine against a newer runtime glibc.

# Matches rust-toolchain.toml.
FROM rust:1.97-bookworm AS builder
FROM rust:1.98-bookworm AS builder

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rust image pin diverges from toolchain

High Severity

The builder image is now rust:1.98-bookworm, but rust-toolchain.toml still pins 1.97.0. The rustc-version-match job requires FROM rust:1.97 and will fail. cargo in the builder also follows rust-toolchain.toml, so the image tag no longer matches the compiler that actually builds.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2d2e102. Configure here.

RUN apt-get update && \
apt-get install -y --no-install-recommends \
clang libclang-dev cmake pkg-config libssl-dev protobuf-compiler && \
Expand Down
Loading