luxopes commited on
Commit
cfa39ce
·
verified ·
1 Parent(s): 9231182

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -4,9 +4,10 @@ WORKDIR /app
4
  COPY . /app
5
 
6
  RUN pip install --no-cache-dir --upgrade pip && \
7
- pip install --no-cache-dir "numpy<2" torch==2.1.0+cpu --index-url https://download.pytorch.org/whl/cpu && \
8
  pip install --no-cache-dir transformers>=4.44.0 peft>=0.11.0 flask accelerate sentencepiece safetensors
9
 
 
10
  EXPOSE 7860
11
  ENV PORT=7860
12
 
 
4
  COPY . /app
5
 
6
  RUN pip install --no-cache-dir --upgrade pip && \
7
+ pip install --no-cache-dir "numpy<2" torch==2.2.0+cpu --index-url https://download.pytorch.org/whl/cpu && \
8
  pip install --no-cache-dir transformers>=4.44.0 peft>=0.11.0 flask accelerate sentencepiece safetensors
9
 
10
+
11
  EXPOSE 7860
12
  ENV PORT=7860
13