blob: 6fcc4853f58c035d76a9f274e5e0e88d6c821411 [file] [log] [blame]
Shad Ansari47432b62021-09-27 22:46:25 +00001#python3 docker_openvino.py build -d cpu -os ubuntu18 --distribution runtime --product_version 2021.4
2FROM ubuntu18_runtime:2021.4
3
4USER root
5
6RUN apt-get update && apt-get install -y \
7 wget \
8 unzip \
9 libglib2.0-0 \
10 libsm6 \
11 libxrender1 \
12 libxext6 \
13 vim \
14 ffmpeg \
15 x11-apps
16
17RUN apt-get install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio
18
19WORKDIR /var/person-detection-app
20
21COPY . .
22
23RUN . .venv/bin/activate && \
24 pip3 install -r requirements.txt
25
26ENTRYPOINT ["./person_detection.sh"]
27CMD ["-i gstreamer", "-ns"]