github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/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 31 32 # this is a comment with a blank line surrounding it 33 34 this is some more useful stuff