Merge pull request #476 from onuratakan/docker

Added docker file
This commit is contained in:
Sefik Ilkin Serengil 2022-05-11 18:44:21 +01:00 committed by GitHub
commit b50f073487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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