Merge pull request #4118 from crazy-max/fix-dockerfile-last-stage

Dockerfile: build binary if no target specified
This commit is contained in:
Sebastiaan van Stijn
2023-03-30 18:59:53 +02:00
committed by GitHub

View File

@ -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 .