Browse code

Fix output targets getting double nested.

Targets are going to bundles/bundles instead of just bundles/. This is
because there is `bundles` in the actual built binaries as well as the
output dir being set to bundles.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>

Brian Goff authored on 2019/12/31 06:20:11
Showing 1 changed files
... ...
@@ -353,10 +353,10 @@ FROM scratch AS binary
353 353
 COPY --from=build-binary /build/bundles/ /
354 354
 
355 355
 FROM scratch AS dynbinary
356
-COPY --from=build-dynbinary /build/ /
356
+COPY --from=build-dynbinary /build/bundles/ /
357 357
 
358 358
 FROM scratch AS cross
359
-COPY --from=build-cross /build/ /
359
+COPY --from=build-cross /build/bundles/ /
360 360
 
361 361
 FROM dev AS final
362 362
 COPY . /go/src/github.com/docker/docker