From 1e29a057ab5df4f53ede06a90a0cc981769ee680 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 1 Mar 2023 10:53:56 -0800 Subject: [PATCH] fix cargo install command. no more inotify feature --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 527776b1..cc9baf00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,12 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ # using a "release" profile (which install does) is **very** important RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/app/target \ - cargo install --locked --no-default-features --features inotify --profile faster_release --root /opt/bin --path ./web3_proxy + cargo install \ + --locked \ + --no-default-features \ + --profile faster_release \ + --root /opt/bin \ + --path ./web3_proxy # # We do not need the Rust toolchain to run the binary!