Skip to content
Merged
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 eth2near/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM rust:1.84.0-bookworm AS builder
FROM rust:1.86.0-bookworm AS builder
Copy link

Copilot AI Dec 22, 2025

Choose a reason for hiding this comment

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

The Rust version is being updated in the Dockerfile, but the corresponding eth2near/rust-toolchain file still specifies version 1.84.0. Both files should be updated to ensure consistency between local development (which uses rust-toolchain) and Docker builds. Please also update the channel in eth2near/rust-toolchain from "1.84.0" to "1.86.0".

Suggested change
FROM rust:1.86.0-bookworm AS builder
FROM rust:1.84.0-bookworm AS builder

Copilot uses AI. Check for mistakes.

WORKDIR /app

Expand Down
Loading