From bc5c07231ec6284b94a8ff78a54d6da4b505a93f Mon Sep 17 00:00:00 2001 From: OlivierDehaene Date: Tue, 9 May 2023 14:39:59 +0200 Subject: [PATCH] fix(docker): fix docker build (#299) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7e01d42f..d68703cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ FROM chef as planner COPY Cargo.toml Cargo.toml COPY rust-toolchain.toml rust-toolchain.toml COPY proto proto +COPY benchmark benchmark COPY router router COPY launcher launcher RUN cargo chef prepare --recipe-path recipe.json @@ -27,6 +28,7 @@ RUN cargo chef cook --release --recipe-path recipe.json COPY Cargo.toml Cargo.toml COPY rust-toolchain.toml rust-toolchain.toml COPY proto proto +COPY benchmark benchmark COPY router router COPY launcher launcher RUN cargo build --release