File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ ENV PYTHON_VERSION 3.3.6
2424
2525# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2626ENV PYTHON_PIP_VERSION 9.0.1
27+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
28+ ENV PYTHON_WHEEL_VERSION 0.29.0
2729
2830RUN set -ex \
2931 && buildDeps=' \
@@ -59,7 +61,10 @@ RUN set -ex \
5961# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
6062# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
6163# https://github.com/docker-library/python/pull/143#issuecomment-241032683
62- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
64+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
65+ "pip==$PYTHON_PIP_VERSION" \
66+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
67+ "wheel==$PYTHON_WHEEL_VERSION" \
6368 \
6469 && find /usr/local -depth \
6570 \( \
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ ENV PYTHON_VERSION 3.3.6
2222
2323# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2424ENV PYTHON_PIP_VERSION 9.0.1
25+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
26+ ENV PYTHON_WHEEL_VERSION 0.29.0
2527
2628RUN set -ex \
2729 && apk add --no-cache --virtual .fetch-deps \
@@ -77,7 +79,10 @@ RUN set -ex \
7779# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
7880# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
7981# https://github.com/docker-library/python/pull/143#issuecomment-241032683
80- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
82+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
83+ "pip==$PYTHON_PIP_VERSION" \
84+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
85+ "wheel==$PYTHON_WHEEL_VERSION" \
8186 \
8287 && find /usr/local -depth \
8388 \( \
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ ENV PYTHON_VERSION 3.3.6
2626
2727# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2828ENV PYTHON_PIP_VERSION 9.0.1
29+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
30+ ENV PYTHON_WHEEL_VERSION 0.29.0
2931
3032RUN set -ex \
3133 && buildDeps=' \
@@ -74,7 +76,10 @@ RUN set -ex \
7476# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
7577# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
7678# https://github.com/docker-library/python/pull/143#issuecomment-241032683
77- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
79+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
80+ "pip==$PYTHON_PIP_VERSION" \
81+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
82+ "wheel==$PYTHON_WHEEL_VERSION" \
7883 \
7984 && find /usr/local -depth \
8085 \( \
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ ENV PYTHON_VERSION 3.3.6
2424
2525# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2626ENV PYTHON_PIP_VERSION 9.0.1
27+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
28+ ENV PYTHON_WHEEL_VERSION 0.29.0
2729
2830RUN set -ex \
2931 && buildDeps=' \
@@ -59,7 +61,10 @@ RUN set -ex \
5961# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
6062# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
6163# https://github.com/docker-library/python/pull/143#issuecomment-241032683
62- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
64+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
65+ "pip==$PYTHON_PIP_VERSION" \
66+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
67+ "wheel==$PYTHON_WHEEL_VERSION" \
6368 \
6469 && find /usr/local -depth \
6570 \( \
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ ENV PYTHON_VERSION 3.4.6
2424
2525# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2626ENV PYTHON_PIP_VERSION 9.0.1
27+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
28+ ENV PYTHON_WHEEL_VERSION 0.29.0
2729
2830RUN set -ex \
2931 && buildDeps=' \
@@ -59,7 +61,10 @@ RUN set -ex \
5961# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
6062# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
6163# https://github.com/docker-library/python/pull/143#issuecomment-241032683
62- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
64+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
65+ "pip==$PYTHON_PIP_VERSION" \
66+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
67+ "wheel==$PYTHON_WHEEL_VERSION" \
6368 \
6469 && find /usr/local -depth \
6570 \( \
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ ENV PYTHON_VERSION 3.4.6
2222
2323# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2424ENV PYTHON_PIP_VERSION 9.0.1
25+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
26+ ENV PYTHON_WHEEL_VERSION 0.29.0
2527
2628RUN set -ex \
2729 && apk add --no-cache --virtual .fetch-deps \
@@ -77,7 +79,10 @@ RUN set -ex \
7779# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
7880# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
7981# https://github.com/docker-library/python/pull/143#issuecomment-241032683
80- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
82+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
83+ "pip==$PYTHON_PIP_VERSION" \
84+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
85+ "wheel==$PYTHON_WHEEL_VERSION" \
8186 \
8287 && find /usr/local -depth \
8388 \( \
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ ENV PYTHON_VERSION 3.4.6
2626
2727# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2828ENV PYTHON_PIP_VERSION 9.0.1
29+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
30+ ENV PYTHON_WHEEL_VERSION 0.29.0
2931
3032RUN set -ex \
3133 && buildDeps=' \
@@ -74,7 +76,10 @@ RUN set -ex \
7476# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
7577# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
7678# https://github.com/docker-library/python/pull/143#issuecomment-241032683
77- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
79+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
80+ "pip==$PYTHON_PIP_VERSION" \
81+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
82+ "wheel==$PYTHON_WHEEL_VERSION" \
7883 \
7984 && find /usr/local -depth \
8085 \( \
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ ENV PYTHON_VERSION 3.4.6
2424
2525# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2626ENV PYTHON_PIP_VERSION 9.0.1
27+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
28+ ENV PYTHON_WHEEL_VERSION 0.29.0
2729
2830RUN set -ex \
2931 && buildDeps=' \
@@ -59,7 +61,10 @@ RUN set -ex \
5961# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
6062# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
6163# https://github.com/docker-library/python/pull/143#issuecomment-241032683
62- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
64+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
65+ "pip==$PYTHON_PIP_VERSION" \
66+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
67+ "wheel==$PYTHON_WHEEL_VERSION" \
6368 \
6469 && find /usr/local -depth \
6570 \( \
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ ENV PYTHON_VERSION 3.5.3
2424
2525# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2626ENV PYTHON_PIP_VERSION 9.0.1
27+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
28+ ENV PYTHON_WHEEL_VERSION 0.29.0
2729
2830RUN set -ex \
2931 && buildDeps=' \
@@ -59,7 +61,10 @@ RUN set -ex \
5961# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
6062# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
6163# https://github.com/docker-library/python/pull/143#issuecomment-241032683
62- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
64+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
65+ "pip==$PYTHON_PIP_VERSION" \
66+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
67+ "wheel==$PYTHON_WHEEL_VERSION" \
6368 \
6469 && find /usr/local -depth \
6570 \( \
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ ENV PYTHON_VERSION 3.5.3
2222
2323# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2424ENV PYTHON_PIP_VERSION 9.0.1
25+ ENV PYTHON_SETUPTOOLS_VERSION 35.0.1
26+ ENV PYTHON_WHEEL_VERSION 0.29.0
2527
2628RUN set -ex \
2729 && apk add --no-cache --virtual .fetch-deps \
@@ -77,7 +79,10 @@ RUN set -ex \
7779# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
7880# ("Requirement already up-to-date: pip==8.1.2 in /usr/local/lib/python3.6/site-packages")
7981# https://github.com/docker-library/python/pull/143#issuecomment-241032683
80- && pip3 install --no-cache-dir --upgrade --force-reinstall "pip==$PYTHON_PIP_VERSION" \
82+ && pip3 install --no-cache-dir --upgrade --force-reinstall \
83+ "pip==$PYTHON_PIP_VERSION" \
84+ "setuptools==$PYTHON_SETUPTOOLS_VERSION" \
85+ "wheel==$PYTHON_WHEEL_VERSION" \
8186 \
8287 && find /usr/local -depth \
8388 \( \
You can’t perform that action at this time.
0 commit comments