Skip to content

Commit f1ef2fe

Browse files
committed
fix(docker): use Rust nightly for edition2024 support
- Change FROM rust:1.84-slim to rustlang/rust:nightly-slim - Fixes Docker build failure: 'edition2024 feature is not stabilized' - Enables successful build of rmcp-macros-0.3.2 dependency requiring edition2024 - Local Docker test confirms successful build and binary execution - Resolves final blocker for Docker image creation in release workflow closes #docker-edition2024-nightly-support
1 parent 85c32b2 commit f1ef2fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Supports both source builds (CI) and crates.io installs (releases)
33

44
# Build stage
5-
FROM rust:1.82-slim AS builder
5+
FROM rustlang/rust:nightly-slim AS builder
66

77
# Install system dependencies for building
88
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)