diff --git a/Dockerfile.multichain b/Dockerfile.multichain index 439d58e45..65714ef60 100644 --- a/Dockerfile.multichain +++ b/Dockerfile.multichain @@ -8,12 +8,14 @@ RUN apt-get update \ RUN echo "fn main() {}" > dummy.rs COPY node/Cargo.toml Cargo.toml RUN sed -i 's#src/main.rs#dummy.rs#' Cargo.toml +RUN sed -i 's#mpc-keys = { path = "../keys" }##' Cargo.toml RUN sed -i 's#mpc-contract = { path = "../contract" }##' Cargo.toml RUN cargo build COPY . . RUN sed -i 's#"mpc-recovery",##' Cargo.toml RUN sed -i 's#"integration-tests",##' Cargo.toml RUN sed -i 's#"load-tests",##' Cargo.toml +RUN sed -i 's#"keys",##' Cargo.toml RUN cargo build --package mpc-recovery-node FROM debian:stable-slim as runtime