diff --git a/Dockerfile b/Dockerfile index 38349e55..3acd7470 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,7 +60,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ # build the application # using a "release" profile (which install does by default) is **very** important -# we use the "faster_release" profile which builds with `codegen-units = 1` +# TODO: use the "faster_release" profile which builds with `codegen-units = 1` RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/app/target \ cargo install \ @@ -68,7 +68,6 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ --locked \ --no-default-features \ --path ./web3_proxy \ - --profile faster_release \ --root /usr/local/bin \ ;