Watchhrr commited on
Commit
e9be6c7
·
verified ·
1 Parent(s): 3d6ff69

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+
2
+ FROM python:3.9
3
+ WORKDIR /code
4
+ RUN pip install fastapi uvicorn duckdb pandas
5
+ COPY . .
6
+ EXPOSE 7860
7
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]