Dockerfile: Turns out a copy of python is now packaged with this image. However, it blocks us from getting the development requirements that we want. As a result, we simply must purge this as our first step.

This commit is contained in:
John Kirkham 2015-10-08 20:15:24 -04:00
parent 14c4103694
commit 43efd71011

View File

@ -13,6 +13,15 @@ ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV PYTHONIOENCODING UTF-8
# Remove preinstalled copy of python that blocks are ability to install development python.
RUN DEBIAN_FRONTEND=noninteractive apt-get remove -yq \
python3-minimal \
python3.4 \
python3.4-minimal \
libpython3-stdlib \
libpython3.4-stdlib \
libpython3.4-minimal
# Python binary and source dependencies
RUN apt-get update -qq && \
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \