removing pillow-simd for now

This commit is contained in:
Blake Blackshear 2020-01-06 06:48:11 -06:00
parent 10dc56f6ea
commit 725dd3220c

View File

@ -8,10 +8,12 @@ RUN apt -qq update && apt -qq install --no-install-recommends -y \
ffmpeg \ ffmpeg \
python3 \ python3 \
python3-pip \ python3-pip \
python3-dev \
python3-numpy \
# python-prctl # python-prctl
build-essential libcap-dev \ build-essential libcap-dev \
# pillow-simd # pillow-simd
zlib1g-dev libjpeg-dev python3-dev\ # zlib1g-dev libjpeg-dev \
# VAAPI drivers for Intel hardware accel # VAAPI drivers for Intel hardware accel
libva-drm2 libva2 i965-va-driver vainfo \ libva-drm2 libva2 i965-va-driver vainfo \
&& echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" > /etc/apt/sources.list.d/coral-edgetpu.list \ && echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" > /etc/apt/sources.list.d/coral-edgetpu.list \
@ -30,13 +32,11 @@ RUN pip3 install -U wheel setuptools
RUN pip3 install -U \ RUN pip3 install -U \
opencv-python \ opencv-python \
python-prctl \ python-prctl \
numpy \
Flask \ Flask \
paho-mqtt \ paho-mqtt \
PyYAML \ PyYAML \
matplotlib \ matplotlib \
scipy \ scipy
pillow-simd
# symlink the model and labels # symlink the model and labels
RUN wget -q https://github.com/google-coral/edgetpu/raw/master/test_data/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite -O mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite --trust-server-names RUN wget -q https://github.com/google-coral/edgetpu/raw/master/test_data/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite -O mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite --trust-server-names