ManavDhayeCoder commited on
Commit
736ecd0
·
verified ·
1 Parent(s): ccfe845
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -4,9 +4,8 @@ WORKDIR /code
4
 
5
  COPY requirements.txt requirements.txt
6
 
7
- # FORCE install exact versions (prevents HF from upgrading sklearn)
8
  RUN pip install --no-cache-dir --upgrade pip
9
- RUN pip install --no-cache-dir --force-reinstall -r requirements.txt
10
 
11
  COPY . .
12
 
 
4
 
5
  COPY requirements.txt requirements.txt
6
 
 
7
  RUN pip install --no-cache-dir --upgrade pip
8
+ RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY . .
11