move comments

This commit is contained in:
Bryan Stitt 2023-07-28 13:06:40 -07:00
parent e5f3200d1a
commit 07b7580789

View File

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