32 lines
887 B
Docker
32 lines
887 B
Docker
FROM bamos/ubuntu-opencv-dlib-torch:ubuntu_14.04-opencv_2.4.11-dlib_19.0-torch_2016.07.12
|
|
MAINTAINER Brandon Amos <brandon.amos.cs@gmail.com>
|
|
|
|
# TODO: Should be added to opencv-dlib-torch image.
|
|
RUN ln -s /root/torch/install/bin/* /usr/local/bin
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
git \
|
|
graphicsmagick \
|
|
python-dev \
|
|
python-pip \
|
|
python-numpy \
|
|
python-nose \
|
|
python-scipy \
|
|
python-pandas \
|
|
python-protobuf\
|
|
wget \
|
|
zip \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
ADD . /root/openface
|
|
RUN cd ~/openface && \
|
|
./models/get-models.sh && \
|
|
pip2 install -r requirements.txt && \
|
|
python2 setup.py install && \
|
|
pip2 install -r demos/web/requirements.txt && \
|
|
pip2 install -r training/requirements.txt
|
|
|
|
EXPOSE 8000 9000
|
|
CMD /bin/bash -l -c '/root/openface/demos/web/start-servers.sh'
|