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
4 changes: 3 additions & 1 deletion deploy/workspace/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@

# ============================================================================
# Stage 1: Build Rust relay-pty binary
# Cargo.lock v4 requires Cargo >=1.78; keep Rust >=1.83.
# ============================================================================
FROM rust:1.83-slim AS rust-builder
ARG RUST_VERSION=1.83
FROM rust:${RUST_VERSION}-slim AS rust-builder

WORKDIR /build

Expand Down