From 3ce95c7af010df5cbcde466c9df0323e553b20e2 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 24 Mar 2023 21:14:29 +0100 Subject: [PATCH] Dockerfile: build binary if no target specified Signed-off-by: CrazyMax --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c06d7a0bab..32036ccba2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -125,8 +125,8 @@ CMD ./scripts/test/e2e/entry FROM build-base-${BASE_VARIANT} AS dev COPY . . -FROM scratch AS binary -COPY --from=build /out . - FROM scratch AS plugins COPY --from=build-plugins /out . + +FROM scratch AS binary +COPY --from=build /out .