playmak3r commited on
Commit
11b3ae2
·
1 Parent(s): ee2a667

add Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+ WORKDIR /app
3
+
4
+ RUN pip install --no-cache-dir -r requirements.txt
5
+ RUN python download_model.py
6
+
7
+ EXPOSE 8000
8
+
9
+ CMD ["python", "/app/server.py"]