mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-03 14:59:18 +08:00
13 lines
197 B
Bash
13 lines
197 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ "$1" = "serve" ]]; then
|
|
shift 1
|
|
torchserve --start --ts-config /home/model-server/config.properties
|
|
else
|
|
eval "$@"
|
|
fi
|
|
|
|
# prevent docker exit
|
|
tail -f /dev/null
|