mirror of
https://github.com/serengil/deepface.git
synced 2025-06-09 04:55:24 +00:00
11 lines
221 B
Docker
11 lines
221 B
Docker
FROM repo.eresearch.unimelb.edu.au:8000/happypet/tensorflow:1.15.2-gpu-py3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ["./src", "requirements.txt", "./"]
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["python", "app.py"] |