Dockerfile 484 B

123456789101112131415161718192021
  1. FROM ubuntu:trusty
  2. RUN \
  3. apt-get update -qq && \
  4. apt-get upgrade -qq -y && \
  5. apt-get install -qq -y \
  6. aptitude \
  7. git \
  8. python \
  9. python-setuptools
  10. RUN \
  11. easy_install -q pip && \
  12. pip install -q -U pip setuptools
  13. RUN apt-get install -qq -y python-qt4 pyqt4-dev-tools
  14. RUN apt-get install -qq -y python-matplotlib
  15. RUN apt-get install -qq -y python-scipy
  16. RUN apt-get install -qq -y python-skimage
  17. RUN pip install -v git+https://github.com/wkentaro/labelme.git