itriedcoding commited on
Commit
eeb59c6
·
verified ·
1 Parent(s): 20393ac

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -3,10 +3,11 @@ FROM python:3.11-slim
3
  WORKDIR /app
4
 
5
  RUN pip install --no-cache-dir \
6
- gradio==4.44.1 \
7
- torch>=2.0.0 \
8
- tokenizers>=0.15.0 \
9
- huggingface_hub>=0.20.0
 
10
 
11
  COPY app.py /app/
12
 
 
3
  WORKDIR /app
4
 
5
  RUN pip install --no-cache-dir \
6
+ gradio==3.50.2 \
7
+ torch \
8
+ --extra-index-url https://download.pytorch.org/whl/cpu \
9
+ tokenizers \
10
+ huggingface_hub
11
 
12
  COPY app.py /app/
13