Spaces:
Running
Running
Upload Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9
|
2 |
+
RUN pip install fastapi uvicorn numpy voyageai
|
3 |
+
WORKDIR /app
|
4 |
+
COPY --chown=user . /app
|
5 |
+
CMD ["uvicorn", "server_embed:app", "--host", "0.0.0.0", "--port", "7860"]
|