From 27441dac1c032719cb90270b3eb653465bc0e5a5 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 f7f4f476..bd66754e 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}