Add multi-arch docker build script

This commit is contained in:
se1exin
2022-05-13 22:52:40 +10:00
parent 3d1208897b
commit 20ee985174
5 changed files with 49 additions and 10 deletions

10
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