diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..056d6d5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.8 + +LABEL org.opencontainers.image.source https://github.com/serengil/deepface + +COPY . . + +RUN apt-get update + +RUN apt-get install ffmpeg libsm6 libxext6 -y + +RUN pip install . + +CMD ["deepface", "--help"] \ No newline at end of file