2014-11-27 01:30:53 +08:00
|
|
|
FROM buildpack-deps:jessie
|
2014-06-21 04:52:22 +08:00
|
|
|
|
|
|
|
# remove several traces of debian python
|
2014-11-27 01:30:53 +08:00
|
|
|
RUN apt-get purge -y python.*
|
2014-06-21 04:52:22 +08:00
|
|
|
|
2014-09-26 23:27:20 +08:00
|
|
|
# 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
|
|
|
|
|
2015-02-05 06:41:27 +08:00
|
|
|
# gpg: key 36580288: public key "Georg Brandl (Python release signing key) <georg@python.org>" imported
|
2016-01-15 06:34:45 +08:00
|
|
|
ENV GPG_KEY 26DEA9D4613391EF3E25C9FF0A5B101836580288
|
2015-01-27 08:16:33 +08:00
|
|
|
|
2015-05-20 00:31:04 +08:00
|
|
|
ENV PYTHON_VERSION 3.3.6
|
|
|
|
|
2015-05-20 00:35:37 +08:00
|
|
|
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
|
2016-03-17 23:54:02 +08:00
|
|
|
ENV PYTHON_PIP_VERSION 8.1.1
|
2015-05-20 00:35:37 +08:00
|
|
|
|
2016-01-15 06:34:45 +08:00
|
|
|
RUN set -ex \
|
|
|
|
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
|
|
|
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
2016-03-01 01:15:45 +08:00
|
|
|
&& export GNUPGHOME="$(mktemp -d)" \
|
|
|
|
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
|
|
|
|
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
|
|
|
|
&& rm -r "$GNUPGHOME" python.tar.xz.asc \
|
2016-01-15 06:34:45 +08:00
|
|
|
&& mkdir -p /usr/src/python \
|
2015-02-05 06:19:08 +08:00
|
|
|
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
2016-03-01 01:15:45 +08:00
|
|
|
&& rm python.tar.xz \
|
2016-01-15 06:34:45 +08:00
|
|
|
\
|
2014-11-11 02:05:40 +08:00
|
|
|
&& cd /usr/src/python \
|
2015-02-26 21:13:13 +08:00
|
|
|
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
2014-06-21 04:52:22 +08:00
|
|
|
&& make -j$(nproc) \
|
|
|
|
&& make install \
|
2014-11-27 01:30:53 +08:00
|
|
|
&& 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 \
|
2016-04-26 11:25:18 +08:00
|
|
|
&& find /usr/local -depth \
|
|
|
|
\( \
|
|
|
|
\( -type d -a -name test -o -name tests \) \
|
|
|
|
-o \
|
|
|
|
\( -type f -a -name '*.pyc' -o -name '*.pyo' \) \
|
|
|
|
\) -exec rm -rf '{}' + \
|
2016-04-20 03:29:53 +08:00
|
|
|
&& rm -rf /usr/src/python ~/.cache
|
2014-06-21 04:52:22 +08:00
|
|
|
|
|
|
|
# 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 \
|
2016-03-29 00:30:32 +08:00
|
|
|
&& ln -s python3-config python-config
|
2014-06-21 04:52:22 +08:00
|
|
|
|
2014-06-21 07:15:38 +08:00
|
|
|
CMD ["python3"]
|