Spaces:
Running
Running
feat: onnxruntime support
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -1,2 +1,5 @@
|
|
| 1 |
FROM huggingface/competitions:latest
|
|
|
|
|
|
|
|
|
|
| 2 |
CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1
|
|
|
|
| 1 |
FROM huggingface/competitions:latest
|
| 2 |
+
|
| 3 |
+
RUN pip install onnxruntime
|
| 4 |
+
|
| 5 |
CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1
|