Skip to content

Instantly share code, notes, and snippets.

@cpuguy83
Created January 28, 2014 13:45
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 cpuguy83/8667913 to your computer and use it in GitHub Desktop.
Save cpuguy83/8667913 to your computer and use it in GitHub Desktop.
Docker issues#3753 Demo
FROM busybox
ADD echo.sh /tmp/echo.sh
ENTRYPOINT ["/tmp/echo.sh"]
#!/bin/sh
echo "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment