forked from serengil/deepface
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
64 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,40 @@ | ||
#base image | ||
FROM python:3.8 | ||
|
||
LABEL org.opencontainers.image.source https://github.com/serengil/deepface | ||
|
||
COPY . . | ||
|
||
# ----------------------------------- | ||
# create required folder | ||
RUN mkdir /app | ||
RUN mkdir /app/api | ||
RUN mkdir /app/deepface | ||
# ----------------------------------- | ||
# Copy required files from repo into image | ||
COPY ./deepface /app/deepface | ||
COPY ./api/api.py /app/ | ||
COPY ./setup.py /app/ | ||
COPY ./README.md /app/ | ||
# ----------------------------------- | ||
# switch to application directory | ||
WORKDIR /app | ||
# ----------------------------------- | ||
# update image os | ||
RUN apt-get update | ||
|
||
RUN apt-get install ffmpeg libsm6 libxext6 -y | ||
|
||
RUN pip install . | ||
|
||
CMD ["deepface", "--help"] | ||
# ----------------------------------- | ||
# install deepface from pypi release (might be out-of-the-date) | ||
# RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org deepface | ||
# ----------------------------------- | ||
# install deepface from source code (always up-to-date) | ||
RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org -e . | ||
# ----------------------------------- | ||
# some packages are optional in deepface. activate if your task depends on one. | ||
# RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org cmake==3.24.1.1 | ||
# RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org dlib==19.20.0 | ||
# RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org lightgbm==2.3.1 | ||
# ----------------------------------- | ||
# environment variables | ||
ENV PYTHONUNBUFFERED=1 | ||
# ----------------------------------- | ||
# run the app (re-configure port if necessary) | ||
EXPOSE 5000 | ||
# flask run is not recommended in production, move this to gunicorn | ||
CMD ["python", "/app/api.py", "--port", "5000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
# start docker | ||
# sudo service docker start | ||
|
||
# list current docker packages | ||
# docker container ls -a | ||
|
||
# delete existing deepface packages | ||
# docker rm -f $(docker ps -a -q --filter "ancestor=deepface") | ||
|
||
# build deepface image | ||
docker build -t deepface_image . | ||
|
||
docker run -it deepface_image /bin/sh | ||
# run image | ||
docker run --net="host" deepface | ||
|
||
# to access the inside of docker image when it is in running status | ||
# docker run -it --net="host" deepface /bin/sh | ||
|
||
# healthcheck | ||
# sleep 3s | ||
# curl localhost:5000 |