Skip to content

Instantly share code, notes, and snippets.

@nakolkin
Forked from abn/heredoc-dockerfile.snip
Created October 19, 2017 12:38
Show Gist options
  • Save nakolkin/fc1fb13da8fb1335d86030a6f9e47d3a to your computer and use it in GitHub Desktop.
Save nakolkin/fc1fb13da8fb1335d86030a6f9e47d3a to your computer and use it in GitHub Desktop.
Dockerfile alternatives for heredoc
#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