github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/build/targets/Dockerfile (about) 1 FROM busybox as target1 2 3 COPY file1 file2 /data/ 4 RUN [ "$(find /data -type f | wc -l | xargs)" == "2" ] 5 6 FROM busybox as target2 7 8 COPY file3 /data/ 9 RUN [ "$(find /data -type f | wc -l | xargs)" == "1" ]