See More

# python-base.docker # # Contains default python with pip, along with base FROM docker-python-deploy-base ENV DEFAULT_PYTHON=2.7.10 ADD .python/$DEFAULT_PYTHON /root/.pyenv/versions/$DEFAULT_PYTHON RUN eval "$(/root/.pyenv/bin/pyenv init -)" && \ /root/.pyenv/bin/pyenv global $DEFAULT_PYTHON RUN curl -L https://bootstrap.pypa.io/get-pip.py -o /dev/stdout | python