Jaman commited on
Commit
600a50e
·
verified ·
1 Parent(s): 546f2a6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -10,11 +10,16 @@ RUN apt-get update && apt-get install -y \
10
  python3-dev \
11
  python3-distutils \
12
  libopenblas-dev \
13
- libatlas-base-dev
 
 
14
 
15
  # Copy the current directory contents into the container at /app
16
  ADD . /app
17
 
 
 
 
18
  # Install numpy first to avoid metadata generation error
19
  RUN pip install --no-cache-dir numpy
20
 
 
10
  python3-dev \
11
  python3-distutils \
12
  libopenblas-dev \
13
+ libatlas-base-dev \
14
+ gfortran \
15
+ && apt-get clean
16
 
17
  # Copy the current directory contents into the container at /app
18
  ADD . /app
19
 
20
+ # Update pip to the latest version
21
+ RUN pip install --upgrade pip
22
+
23
  # Install numpy first to avoid metadata generation error
24
  RUN pip install --no-cache-dir numpy
25