fix cargo install command. no more inotify feature

This commit is contained in:
Bryan Stitt 2023-03-01 10:53:56 -08:00
parent 1da12f5844
commit 1e29a057ab

View File

@ -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!