FROM ubuntu:14.04 MAINTAINER Robert Cowham "rcowham@perforce.com" RUN add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"; \ apt-get -y update; \ echo "postfix postfix/mailname string `hostname`" | debconf-set-selections; \ echo "postfix postfix/main_mailer_type string 'No configuration'" | debconf-set-selections; \ apt-get install -y postfix; \ apt-get install -y mailutils; \ apt-get install -y build-essential; \ apt-get install -y wget; \ apt-get install -y python3.4; \ apt-get install -y python3.4-dev; \ apt-get autoremove; \ apt-get clean ADD https://raw.githubusercontent.com/pypa/pip/5d927de5cdc7c05b1afbdd78ae0d1b127c04d9d0/contrib/get-pip.py /root/get-pip.py RUN python3.4 /root/get-pip.py RUN pip3.4 install -U "p4python"