Boulbaba commited on
Commit
2c61efe
·
1 Parent(s): 45b6ff3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -6,7 +6,9 @@ ENV PYTHONDONTWRITEBYTECODE=1
6
  ENV PYTHONUNBUFFERED=1
7
 
8
  COPY requirements.txt .
9
- RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
 
 
10
 
11
  COPY . .
12
 
 
6
  ENV PYTHONUNBUFFERED=1
7
 
8
  COPY requirements.txt .
9
+
10
+ RUN pip install --upgrade pip setuptools wheel && \
11
+ pip install --no-cache-dir --upgrade --upgrade-strategy eager -r requirements.txt
12
 
13
  COPY . .
14