Merge pull request #40331 from cpuguy83/fix_bundle_output_dir

Fix output targets getting double nested.
This commit is contained in:
Akihiro Suda 2020-01-01 01:56:39 +09:00 committed by GitHub
commit e6f6c35b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -353,10 +353,10 @@ FROM scratch AS binary
COPY --from=build-binary /build/bundles/ /
FROM scratch AS dynbinary
COPY --from=build-dynbinary /build/ /
COPY --from=build-dynbinary /build/bundles/ /
FROM scratch AS cross
COPY --from=build-cross /build/ /
COPY --from=build-cross /build/bundles/ /
FROM dev AS final
COPY . /go/src/github.com/docker/docker