From dba52132e92db256f1967efe2fabc9e28c0f3b98 Mon Sep 17 00:00:00 2001 From: Federico Gimenez Date: Mon, 12 Aug 2024 10:26:49 -0700 Subject: [PATCH] chore: prevent warnings on docker build (#10273) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1dc54909ff9b..85546548dba9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,15 +17,15 @@ COPY --from=planner /app/recipe.json recipe.json # Build profile, release by default ARG BUILD_PROFILE=release -ENV BUILD_PROFILE $BUILD_PROFILE +ENV BUILD_PROFILE=$BUILD_PROFILE # Extra Cargo flags ARG RUSTFLAGS="" -ENV RUSTFLAGS "$RUSTFLAGS" +ENV RUSTFLAGS="$RUSTFLAGS" # Extra Cargo features ARG FEATURES="" -ENV FEATURES $FEATURES +ENV FEATURES=$FEATURES # Builds dependencies RUN cargo chef cook --profile $BUILD_PROFILE --features "$FEATURES" --recipe-path recipe.json