Skip to content
Draft
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: 2 additions & 2 deletions runtime/sidecar-watcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM rust:1.82-bookworm AS builder
WORKDIR /app

# Cache deps: copy manifests first
COPY Cargo.toml Cargo.lock ./
COPY Cargo.toml ./
# If you have a workspace, also copy Cargo.toml files of members:
# COPY crates/*/Cargo.toml crates/*/

Expand All @@ -19,7 +19,7 @@ RUN rm -rf src
# Now copy real sources and build
COPY src ./src
# If workspace: COPY crates ./crates
RUN cargo build --release --locked
RUN cargo build --release

# ---------- runtime stage ----------
FROM debian:bookworm-slim
Expand Down
Loading