github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile (about) 1 FROM ubuntu:14.04 2 3 RUN echo hello\ 4 world\ 5 goodnight \ 6 moon\ 7 light\ 8 ning 9 RUN echo hello \ 10 world 11 RUN echo hello \ 12 world 13 RUN echo hello \ 14 goodbye\ 15 frog 16 RUN echo hi \ 17 \ 18 world \ 19 \ 20 good\ 21 \ 22 night 23 RUN echo goodbye\ 24 frog 25 RUN echo good\ 26 bye\ 27 frog 28 29 RUN echo hello \ 30 # this is a comment that breaks escape continuation 31 RUN echo this is some more useful stuff