Jaman commited on
Commit
2822836
·
verified ·
1 Parent(s): edc2d43

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -20,8 +20,8 @@ ADD . /app
20
  # Update pip to the latest version
21
  RUN pip install --upgrade pip
22
 
23
- # Install a specific version of numpy that works with Python 3.10
24
- RUN pip install --no-cache-dir numpy==1.21.2
25
 
26
  # Install any needed packages specified in requirements.txt
27
  RUN pip install --no-cache-dir -r requirements.txt
 
20
  # Update pip to the latest version
21
  RUN pip install --upgrade pip
22
 
23
+ # Install a compatible version of numpy first
24
+ RUN pip install --no-cache-dir numpy==1.18.5
25
 
26
  # Install any needed packages specified in requirements.txt
27
  RUN pip install --no-cache-dir -r requirements.txt