From 71453bb0eff85ff2b588c679632b0e76d85e10fe Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 4 Jan 2021 18:32:51 +0000 Subject: [PATCH] Update --- data_processor/firebase_python_image/Dockerfile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/data_processor/firebase_python_image/Dockerfile b/data_processor/firebase_python_image/Dockerfile index 3b6bc35..8acccd5 100644 --- a/data_processor/firebase_python_image/Dockerfile +++ b/data_processor/firebase_python_image/Dockerfile @@ -2,6 +2,19 @@ FROM python:3.7 RUN apt update RUN apt install -y python3-numpy RUN apt install -y python-pandas +RUN apt install -y wget RUN pip install requests -RUN pip install tensorflow RUN pip install -r requirements.txt + + +RUN apt install -y libhdf5-dev libc-ares-dev libeigen3-dev +RUN pip install keras_applications==1.0.8 --no-deps +RUN pip install keras_preprocessing==1.1.0 --no-deps +RUN pip install h5py==2.9.0 +RUN apt install -y openmpi-bin libopenmpi-dev +RUN apt install -y libatlas-base-dev +RUN pip install -U six wheel mock + +RUN wget https://github.com/lhelontra/tensorflow-on-arm/releases/download/v2.4.0/tensorflow-2.4.0-cp35-none-linux_armv7l.whl +RUN pip uninstall tensorflow +RUN pip install tensorflow-2.0.0-cp37-none-linux_armv7l.whl