From a8f0c1f6f44d3443a8e258832dc4150f98fd72ab Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 12 Jun 2023 19:02:18 -0700 Subject: [PATCH] drop the faster_release profile for now --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 \ ;