Skip to content
Open
Show file tree
Hide file tree
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 crates/registry-relay/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ARG REGISTRY_RELAY_FEATURES="attribute-release,crosswalk-runtime"

# Keep the tag for humans and the digest for reproducible pulls.
FROM rust:1.95-trixie@sha256:f49565f188ee00bc2a18dd418183f2c5f23ef7d6e691890517ed341a598f67c3 AS builder
FROM rust:1.96-trixie@sha256:1f0dbad1df66647807e6952d1db85d0b2bda7606cb2139d82517e4f009967376 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.

P1 Badge Update the Debian 13 image contract with the Rust bump

With this Dockerfile bumped to rust:1.96-trixie, the committed CI gate still requires the old rust:1.95-trixie builder: .github/workflows/ci.yml runs python3 release/scripts/check-debian13-images.py, whose RUST_BUILDER constant is still 1.95, so running that check now fails for both crates/registry-relay/Dockerfile and Dockerfile.demo. Please update the image contract/check fixtures together with the Dockerfile bump so Relay's required preflight can pass.

AGENTS.md reference: crates/registry-relay/AGENTS.md:L8-L11

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Update the Debian 13 image contract with the Rust bump

With this Dockerfile bumped to rust:1.96-trixie, the committed CI gate still requires the old rust:1.95-trixie builder: .github/workflows/ci.yml runs python3 release/scripts/check-debian13-images.py, whose RUST_BUILDER constant is still 1.95, so running that check now fails for both crates/registry-relay/Dockerfile and Dockerfile.demo. Please update the image contract/check fixtures together with the Dockerfile bump so Relay's required preflight can pass.

Useful? React with 👍 / 👎.

ARG REGISTRY_RELAY_FEATURES
WORKDIR /workspace/registry_relay

Expand Down
2 changes: 1 addition & 1 deletion crates/registry-relay/Dockerfile.demo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.7

# Keep the tag for humans and the digest for reproducible pulls.
FROM rust:1.95-trixie@sha256:f49565f188ee00bc2a18dd418183f2c5f23ef7d6e691890517ed341a598f67c3 AS builder
FROM rust:1.96-trixie@sha256:1f0dbad1df66647807e6952d1db85d0b2bda7606cb2139d82517e4f009967376 AS builder
WORKDIR /workspace/registry_relay

COPY Cargo.toml Cargo.lock ./
Expand Down
Loading