blob: 53ba65a368fa0cec16b5f2a186a4e655cf1a5ea3 [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 build/tmp /cli
CMD cd /cli && python setup.py sdist