Watchhrr commited on
Commit
35149db
·
verified ·
1 Parent(s): e5a5916

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+ WORKDIR /code
3
+ COPY . .
4
+ RUN pip install --no-cache-dir -r requirements.txt
5
+ EXPOSE 7860
6
+ CMD ["python", "app.py"]