github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/builder/dockerfile/parser/testfiles/empty-line-after-escape/Dockerfile (about) 1 FROM busybox 2 3 # The following will create two instructions 4 # `Run foo` 5 # `bar` 6 # because empty line will break the escape. 7 # The parser will generate the following: 8 # (from "busybox") 9 # (run "foo") 10 # (bar "") 11 # And `bar` will return an error instruction later 12 # Note: Parse() will not immediately error out. 13 RUN foo \ 14 15 bar