Mostly working detection in a separate process

This commit is contained in:
Blake Blackshear
2020-01-30 20:12:29 -06:00
parent 3f34c57e31
commit 24cb3508e8
2 changed files with 100 additions and 27 deletions

View File

@@ -23,6 +23,7 @@ RUN apt -qq update && apt -qq install --no-install-recommends -y \
# python-prctl \
numpy \
imutils \
SharedArray \
# Flask \
# paho-mqtt \
# PyYAML \
@@ -50,7 +51,6 @@ RUN apt -qq update && apt -qq install --no-install-recommends -y \
WORKDIR /opt/frigate/
ADD frigate frigate/
COPY detect_objects.py .
COPY start.py .
COPY benchmark.py .
CMD ["python3", "-u", "start.py"]
CMD ["python3", "-u", "benchmark.py"]