summaryrefslogtreecommitdiffstats
path: root/dockerclient/testdata/Dockerfile.copyfrom_7
blob: 6ee21bc2908e216afda30fc7dda60dc8931369e8 (plain)
1
2
3
4
5
FROM busybox as base
RUN touch /b
FROM busybox
COPY --from=base /b /a
RUN ls -al /a && ! ls -al /b