Added docker file

This commit is contained in:
Onur Atakan ULUSOY 2022-05-11 15:56:36 +00:00
parent cf5c84fe1d
commit 39286d6dae

13
Dockerfile Normal file
View File

@ -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"]