Add dockerfile

This commit is contained in:
se1exin
2022-05-13 20:57:22 +10:00
parent 99cf61f0cf
commit 3d1208897b
7 changed files with 45 additions and 13 deletions

10
docker/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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