blob: 8a2dcb4420b42365f4466c74d6c888e7f59b574d [file] [log] [blame]
FROM ubuntu:14.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update --fix-missing && \
apt-get -y dist-upgrade && \
apt-get -y install python2.7 && \
apt-get -y install python-distribute python-pip && \
apt-get clean
ADD . /cli
RUN cd /cli && python setup.py sdist