Revert "Make entrypoint.sh the entrypoint."
This reverts commit 0082d0d961
.
This commit is contained in:
parent
0082d0d961
commit
8b7b70ee91
|
@ -21,5 +21,4 @@ USER ngrok
|
|||
|
||||
EXPOSE 4040
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["/bin/ngrok"]
|
||||
CMD ["/entrypoint.sh"]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$1" = "/bin/sh" ]; then
|
||||
shift
|
||||
|
@ -55,4 +55,4 @@ case "$1" in
|
|||
*) ARGS="$PROTOCOL $ARGS -log stdout $* $FWD" ;;
|
||||
esac
|
||||
|
||||
exec "$@"
|
||||
exec /bin/ngrok $ARGS
|
||||
|
|
Loading…
Reference in New Issue