diff --git a/Dockerfile b/Dockerfile index 6564ed1..f922f67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM rust:1-slim AS builder WORKDIR /app COPY Cargo.toml Cargo.lock ./ +COPY src ./ RUN cargo build --release # Stage 2: Create the final image