Skip to content

Instantly share code, notes, and snippets.

@dragon788
Forked from abn/heredoc-dockerfile.snip
Last active August 29, 2015 14:23
Show Gist options
  • Save dragon788/fb13e253688ac8fb5d18 to your computer and use it in GitHub Desktop.
Save dragon788/fb13e253688ac8fb5d18 to your computer and use it in GitHub Desktop.
#printf
RUN printf '#!/bin/bash\n\
echo hello world from line 1\n\
echo hello world from line 2'\
>> /tmp/hello
#echo
RUN echo -e '#!/bin/bash\n\
echo hello world from line 1\n\
echo hello world from line 2'\
>> /tmp/hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment