Skip to content

Instantly share code, notes, and snippets.

@VGoshev
Created November 1, 2018 14:08
Show Gist options
  • Save VGoshev/d36968c141b5cb96a7d0253adab911dc to your computer and use it in GitHub Desktop.
Save VGoshev/d36968c141b5cb96a7d0253adab911dc to your computer and use it in GitHub Desktop.
Test for Oleg
#!/bin/sh
echo ARGS
echo $*
tail -f /dev/null
FROM ubuntu
COPY entry.sh cmd.sh /
ENTRYPOINT ["/entry.sh"]
CMD ["/cmd.sh", "ololo"]
#!/bin/sh
echo IMIENTRY
exec $*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment