fix: make container worker validation reproducible

This commit is contained in:
2026-06-05 19:01:25 +08:00
parent 8d54ea3374
commit 853d1db618
2 changed files with 17 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ FROM rust:1.93-bookworm AS rust-builder
WORKDIR /workspace
COPY server-rs ./server-rs
COPY public ./public
RUN cargo build --release -p api-server --manifest-path server-rs/Cargo.toml && \
cp server-rs/target/release/api-server /tmp/api-server