Skip to content

Commit

Permalink
Merge pull request #104 from jgranstrom/docker-entrypoint-fix
Browse files Browse the repository at this point in the history
Docker entrypoint script fix
  • Loading branch information
amn41 committed Jan 16, 2017
2 parents 7885c1d + aa4f7f6 commit e930f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ function download_package {

case ${1} in
start)
python -m rasa_nlu.server "${@:2}"
exec python -m rasa_nlu.server "${@:2}"
;;
run)
"${@:2}"
exec "${@:2}"
;;
download)
download_package ${@:2}
Expand Down

0 comments on commit e930f51

Please sign in to comment.