You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# build (after you've trained locally so models/ exists)
123
+
docker build -t serving-app .
124
+
125
+
# run (expose container:8000 -> host:8011)
126
+
docker run --rm -p 8011:8000 serving-app
127
+
# docs: http://localhost:8011/docs
128
+
```
129
+
49
130
## CI
50
131
51
132
A lightweight GitHub Actions workflow (.github/workflows/ci.yml) installs deps, boots the API, and smoke-tests /health. Extend it with linting, unit tests, or load tests as you grow.
0 commit comments