mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
105bc63295
While look at #27039 I noticed that we allow for whitespace after the continuation char (\\) which is wrong. It needs to be the very last char in the line. Signed-off-by: Doug Davis <dug@us.ibm.com>
34 lines
377 B
Docker
34 lines
377 B
Docker
FROM ubuntu:14.04
|
|
|
|
RUN echo hello\
|
|
world\
|
|
goodnight \
|
|
moon\
|
|
light\
|
|
ning
|
|
RUN echo hello \
|
|
world
|
|
RUN echo hello \
|
|
world
|
|
RUN echo hello \
|
|
goodbye\
|
|
frog
|
|
RUN echo hi \
|
|
\
|
|
world \
|
|
\
|
|
good\
|
|
\
|
|
night
|
|
RUN echo goodbye\
|
|
frog
|
|
RUN echo good\
|
|
bye\
|
|
frog
|
|
|
|
RUN echo hello \
|
|
# this is a comment
|
|
|
|
# this is a comment with a blank line surrounding it
|
|
|
|
this is some more useful stuff
|