You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

entrypoint.sh 197 B

2 years ago
123456789101112
  1. #!/bin/bash
  2. set -e
  3. if [[ "$1" = "serve" ]]; then
  4. shift 1
  5. torchserve --start --ts-config /home/model-server/config.properties
  6. else
  7. eval "$@"
  8. fi
  9. # prevent docker exit
  10. tail -f /dev/null

No Description

Contributors (3)