mirror of
https://github.com/serengil/deepface.git
synced 2025-06-06 03:25:21 +00:00
13 lines
215 B
Docker
13 lines
215 B
Docker
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"] |