From 07b75807896e674e5e0ab11cd5401f8cded83872 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 28 Jul 2023 13:06:40 -0700 Subject: [PATCH] move comments --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50206f21..80923a13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -116,9 +116,9 @@ RUN --mount=type=cache,target=/root/.cargo/git \ FROM rust_with_env as build_app -# # build the release application -# # using a "release" profile (which install does by default) is **very** important -# # TODO: use the "faster_release" profile which builds with `codegen-units = 1` (but compile is SLOW) +# build the release application +# using a "release" profile (which install does by default) is **very** important +# TODO: use the "faster_release" profile which builds with `codegen-units = 1` (but compile is SLOW) RUN --mount=type=cache,target=/root/.cargo/git \ --mount=type=cache,target=/root/.cargo/registry \ --mount=type=cache,target=/app/target \