Neon-tech commited on
Commit
8e75a7b
·
verified ·
1 Parent(s): 9e8bbd7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -6
Dockerfile CHANGED
@@ -2,13 +2,11 @@ FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
 
5
- RUN pip install \
6
- huggingface_hub \
7
- tokenizers \
8
- pandas \
9
- pyarrow \
10
- requests
11
 
12
  COPY app.py .
13
 
 
 
14
  CMD ["python", "app.py"]
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
 
 
 
 
7
 
8
  COPY app.py .
9
 
10
+ EXPOSE 7860
11
+
12
  CMD ["python", "app.py"]