blob: 1f16aadd8012c919c231224465b9b7f777c2bb6b [file] [log] [blame]
FROM buildpack-deps:trusty
ENV DEBIAN_FRONTEND noninteractive
# Upgrade and install basic Python dependencies
RUN apt-get -y purge && \
apt-get -y update && \
apt-get -y install --fix-missing python2.7 python-distribute python-pip
RUN apt-get clean
ADD build/tmp /cli
RUN cd /cli && python setup.py sdist