Shad Ansari | 47432b6 | 2021-09-27 22:46:25 +0000 | [diff] [blame^] | 1 | #python3 docker_openvino.py build -d cpu -os ubuntu18 --distribution runtime --product_version 2021.4 |
| 2 | FROM ubuntu18_runtime:2021.4 |
| 3 | |
| 4 | USER root |
| 5 | |
| 6 | RUN 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 | |
| 17 | RUN 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 | |
| 19 | WORKDIR /var/person-detection-app |
| 20 | |
| 21 | COPY . . |
| 22 | |
| 23 | RUN . .venv/bin/activate && \ |
| 24 | pip3 install -r requirements.txt |
| 25 | |
| 26 | ENTRYPOINT ["./person_detection.sh"] |
| 27 | CMD ["-i gstreamer", "-ns"] |