| 123456789101112131415161718192021222324252627282930313233 | FROM ubuntu:trusty# http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/RUN export uid=1000 gid=1000 && \    mkdir -p /home/developer && \    echo "developer:x:${uid}:${gid}:Developer,,,:/home/developer:/bin/bash" >> /etc/passwd && \    echo "developer:x:${uid}:" >> /etc/group && \    echo "developer ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/developer && \    chmod 0440 /etc/sudoers.d/developer && \    chown ${uid}:${gid} -R /home/developerRUN \  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.gitUSER developerENV HOME /home/developer
 |