From fc33c037d34daaf4f5eba1ccebacf4197ecabed2 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Thu, 16 May 2024 13:02:28 +0300 Subject: [PATCH] set dockerfile default profile to `release` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a25d9270..f54d7aa7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN cargo chef prepare --recipe-path recipe.json FROM chef AS builder COPY --from=planner /app/recipe.json recipe.json -ARG BUILD_PROFILE=maxperf +ARG BUILD_PROFILE=release ENV BUILD_PROFILE ${BUILD_PROFILE} ARG FEATURES="" ENV FEATURES ${FEATURES}