2015-05-24 08:52:39 +08:00
|
|
|
FROM buildpack-deps:jessie
|
|
|
|
|
|
|
|
# remove several traces of debian python
|
|
|
|
RUN apt-get purge -y python.*
|
|
|
|
|
|
|
|
# http://bugs.python.org/issue19846
|
|
|
|
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
|
|
|
|
# gpg: key 36580288: public key "Georg Brandl (Python release signing key) <georg@python.org>" imported
|
|
|
|
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 26DEA9D4613391EF3E25C9FF0A5B101836580288
|
|
|
|
|
|
|
|
ENV PYTHON_VERSION 3.2.6
|
|
|
|
|
|
|
|
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
|
2015-08-25 01:06:41 +08:00
|
|
|
ENV PYTHON_PIP_VERSION 7.1.2
|
2015-05-24 08:52:39 +08:00
|
|
|
|
|
|
|
RUN set -x \
|
|
|
|
&& mkdir -p /usr/src/python \
|
2015-12-24 08:12:06 +08:00
|
|
|
&& curl -fSL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
|
|
|
&& curl -fSL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
2015-05-24 08:52:39 +08:00
|
|
|
&& gpg --verify python.tar.xz.asc \
|
|
|
|
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
|
|
|
&& rm python.tar.xz* \
|
|
|
|
&& cd /usr/src/python \
|
|
|
|
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
|
|
|
&& make -j$(nproc) \
|
|
|
|
&& make install \
|
|
|
|
&& ldconfig \
|
2015-12-24 08:12:06 +08:00
|
|
|
&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python3 \
|
2015-06-05 01:26:54 +08:00
|
|
|
&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION \
|
2015-05-24 08:52:39 +08:00
|
|
|
&& find /usr/local \
|
|
|
|
\( -type d -a -name test -o -name tests \) \
|
|
|
|
-o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) \
|
|
|
|
-exec rm -rf '{}' + \
|
|
|
|
&& rm -rf /usr/src/python
|
|
|
|
|
|
|
|
# make some useful symlinks that are expected to exist
|
|
|
|
RUN cd /usr/local/bin \
|
|
|
|
&& ln -s idle3 idle \
|
|
|
|
&& ln -s pydoc3 pydoc \
|
|
|
|
&& ln -s python3 python \
|
|
|
|
&& ln -s python-config3 python-config
|
|
|
|
|
|
|
|
CMD ["python3"]
|