face-recognition-app/face_recognition/Dockerfile

12 lines
254 B
Docker
Raw Normal View History

2019-05-23 11:54:31 +00:00
FROM python:3.6
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
2019-06-08 16:59:42 +00:00
RUN pip install CMake
2019-05-23 11:54:31 +00:00
RUN pip install -r requirements.txt
RUN rm requirements.txt
RUN useradd -ms /bin/bash admin
USER admin
2019-06-08 17:23:27 +00:00
COPY /app .
2019-05-23 11:54:31 +00:00
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]