This reverts commit 105bc63295a7126798d3722a0e205c5ead4e2b1c, which (although correct), resulted in a backward incompatible change. We can re-implement this in future, after this changes goes through a deprecation cycle Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: c67550414b762ab32ea3e9645ebcafb79cb9059d Component: engine
37 lines
403 B
Docker
37 lines
403 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 hello \
|
|
world
|
|
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
|