Skip to content

Commit 4488990

Browse files
committed
fix: remove Cargo.lock from Dockerfile COPY
Cargo.lock is gitignored so it's not available in CI builds
1 parent 85abe51 commit 4488990

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
@@ -6,7 +6,7 @@ FROM rust:1.89 AS builder
66
WORKDIR /build
77

88
# Copy workspace files
9-
COPY Cargo.toml Cargo.lock ./
9+
COPY Cargo.toml ./
1010
COPY crates/ ./crates/
1111

1212
# Build release binary

0 commit comments

Comments
 (0)