From 2620e7924bfed07f9329da26c43ede829ef2fd45 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Mon, 13 May 2024 18:32:10 +0300 Subject: [PATCH] use `maxperf` profile for Docker build by default --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 019a2470..5347f4e4 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=release +ARG BUILD_PROFILE=maxperf ENV BUILD_PROFILE ${BUILD_PROFILE} ARG FEATURES="" ENV FEATURES ${FEATURES}