From c831609978a424d55d5b4ac22f1063288b867a20 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Sun, 15 Jan 2023 12:56:00 -0800 Subject: [PATCH] disable default features (deadlock detection) in docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 02bfdfa0..c1487de7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY . . RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/usr/src/web3_proxy/target \ cargo test &&\ - cargo install --locked --root /opt/bin --path ./web3_proxy + cargo install --locked --no-default-features --root /opt/bin --path ./web3_proxy FROM debian:bullseye-slim