Guest User

Untitled

a guest
Apr 26th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. FROM tensorflow/tensorflow:latest-gpu-py3
  2.  
  3.  
  4. RUN apt-get update && apt-get install -y --no-install-recommends \
  5. git \
  6. cmake \
  7. libsm6 \
  8. libxext6 \
  9. libxrender-dev
  10.  
  11. RUN pip install --no-cache-dir pathlib==1.0.1 scandir==1.6 dlib face_recognition tqdm azure opencv-python pandas keras
  12.  
  13.  
  14. # TensorBoard
  15. EXPOSE 6006
  16. # IPython
  17. EXPOSE 8888
  18.  
  19. WORKDIR "/notebooks"
  20.  
  21. CMD ["/run_jupyter.sh", "--allow-root"]
Add Comment
Please, Sign In to add comment