face-detect-mqtt/Dockerfile

11 lines
161 B
Docker
Raw Normal View History

2022-05-13 12:57:22 +02:00
FROM python:3.7
RUN apt-get update \
&& apt-get install -y python3-opencv
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD python main.py