Update Dockerfile
Browse files- 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 |
|