Skip to content

Commit e16c8a9

Browse files
committed
fix: 更新 Dockerfile 中 Rust 镜像版本
将 Dockerfile 中用于构建后端的 Rust 镜像版本从 `1.85-bookworm` 更新为 `latest`,以确保使用最新的 Rust 版本进行构建。
1 parent 4acb256 commit e16c8a9

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
@@ -8,7 +8,7 @@ COPY web/ ./
88
RUN pnpm build
99

1010
# Stage 2: Build backend
11-
FROM rust:1.85-bookworm AS backend
11+
FROM rust:latest AS backend
1212
WORKDIR /build
1313
# Copy manifests first for dependency caching
1414
COPY Cargo.toml Cargo.lock ./

0 commit comments

Comments
 (0)