Update Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
|
@@ -1,2 +1,9 @@
|
|
| 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 --no-cache-dir \
|
| 4 |
+
trimesh \
|
| 5 |
+
numpy \
|
| 6 |
+
scipy \
|
| 7 |
+
faiss-cpu
|
| 8 |
+
|
| 9 |
CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1
|