Merge pull request #657 from khalilsarwari/dockerfile_fix

Fix typo in Dockerfile
This commit is contained in:
Sefik Ilkin Serengil 2023-02-03 14:10:13 +00:00 committed by GitHub
commit a640a8561c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,8 @@ RUN mkdir /app/deepface
# Copy required files from repo into image
COPY ./deepface /app/deepface
COPY ./api/app.py /app/
COPY ./api/routes.py.py /app/
COPY ./api/service.py.py /app/
COPY ./api/routes.py /app/
COPY ./api/service.py /app/
COPY ./setup.py /app/
COPY ./README.md /app/
# -----------------------------------