Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,9 @@ WORKDIR /app
|
|
| 8 |
RUN apt-get update && apt-get install -y \
|
| 9 |
build-essential \
|
| 10 |
python3-dev \
|
| 11 |
-
python3-distutils
|
|
|
|
|
|
|
| 12 |
|
| 13 |
# Copy the current directory contents into the container at /app
|
| 14 |
ADD . /app
|
|
|
|
| 8 |
RUN apt-get update && apt-get install -y \
|
| 9 |
build-essential \
|
| 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
|