| 123456789101112131415161718192021 | FROM ubuntu:trustyRUN \  apt-get update -qq && \  apt-get upgrade -qq -y && \  apt-get install -qq -y \    aptitude \    git \    python \    python-setuptoolsRUN \  easy_install -q pip && \  pip install -q -U pip setuptoolsRUN apt-get install -qq -y python-qt4 pyqt4-dev-toolsRUN apt-get install -qq -y python-matplotlibRUN apt-get install -qq -y python-scipyRUN apt-get install -qq -y python-skimageRUN pip install -v git+https://github.com/wkentaro/labelme.git
 |