Fix output targets getting double nested.
| ... | ... |
@@ -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 |