Jaman commited on
Commit
23e2adc
·
verified ·
1 Parent(s): 663a95c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -7,6 +7,9 @@ WORKDIR /app
7
  # Copy the current directory contents into the container at /app
8
  ADD . /app
9
 
 
 
 
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
7
  # Copy the current directory contents into the container at /app
8
  ADD . /app
9
 
10
+ # Install numpy first to avoid the metadata generation error
11
+ RUN pip install --no-cache-dir numpy
12
+
13
  # Install any needed packages specified in requirements.txt
14
  RUN pip install --no-cache-dir -r requirements.txt
15