Skip to content

Instantly share code, notes, and snippets.

@etki
Last active August 31, 2017 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etki/0603dc7f71c7f62cbd3d50c8e266c02a to your computer and use it in GitHub Desktop.
Save etki/0603dc7f71c7f62cbd3d50c8e266c02a to your computer and use it in GitHub Desktop.
Hello-world with exclamation suffix
FROM alpine
ENTRYPOINT ["/bin/sh", "-c", "echo \"Hello $1!\"", "hello-world"]
CMD ["World"]
FROM alpine
ENTRYPOINT ["/usr/bin/printf", "Hello %s!\n"]
CMD ["World"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment