Skip to content

Instantly share code, notes, and snippets.

@WeslyG
Created August 2, 2019 07:56
Show Gist options
  • Save WeslyG/271774e3eee5c36243bf5fbea50ff070 to your computer and use it in GitHub Desktop.
Save WeslyG/271774e3eee5c36243bf5fbea50ff070 to your computer and use it in GitHub Desktop.
dlib ubuntu docker
FROM ubuntu:18.10
RUN apt-get update && \
apt-get install build-essential cmake -y && \
apt-get install libopenblas-dev liblapack-dev -y && \
apt-get install libx11-dev libgtk-3-dev -y && \
apt-get install python python-dev python-pip -y && \
apt-get install python3 python3-dev python3-pip -y
# build ~3-4 hours(!) on i7 8700k + 960pro (nvme ssd)
# you can download this images from
# docker pull weslyg/dlib:latest
RUN pip install numpy && \
pip install dlib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment