Skip to content

Instantly share code, notes, and snippets.

@cpuguy83
Created January 28, 2014 13:45
Show Gist options
  • Select an option

  • Save cpuguy83/8667913 to your computer and use it in GitHub Desktop.

Select an option

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