Skip to content

Commit 85c08ab

Browse files
committed
Merge pull request docker-library#62 from ctolsen/master
Upgrade to final version of Python 3.5.0
2 parents 15798ab + e4a0ed2 commit 85c08ab

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

3.5/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ ENV LANG C.UTF-8
1010
# gpg: key F73C700D: public key "Larry Hastings <larry@hastings.org>" imported
1111
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 97FC712E4C024BBEA48A61ED3A5CA953F73C700D
1212

13-
ENV PYTHON_VERSION 3.5.0b3
13+
ENV PYTHON_VERSION 3.5.0
1414

1515
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
16-
ENV PYTHON_PIP_VERSION 7.1.0
16+
ENV PYTHON_PIP_VERSION 7.1.2
1717

1818
RUN set -x \
1919
&& mkdir -p /usr/src/python \
@@ -36,7 +36,7 @@ RUN set -x \
3636

3737
# make some useful symlinks that are expected to exist
3838
RUN cd /usr/local/bin \
39-
&& ln -s easy_install-3.4 easy_install \
39+
&& ln -s easy_install-3.5 easy_install \
4040
&& ln -s idle3 idle \
4141
&& ln -s pydoc3 pydoc \
4242
&& ln -s python3 python \

3.5/slim/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
# gpg: key F73C700D: public key "Larry Hastings <larry@hastings.org>" imported
1717
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 97FC712E4C024BBEA48A61ED3A5CA953F73C700D
1818

19-
ENV PYTHON_VERSION 3.5.0b3
19+
ENV PYTHON_VERSION 3.5.0
2020

2121
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
22-
ENV PYTHON_PIP_VERSION 7.1.0
22+
ENV PYTHON_PIP_VERSION 7.1.2
2323

2424
RUN set -x \
2525
&& buildDeps=' \
@@ -57,7 +57,7 @@ RUN set -x \
5757

5858
# make some useful symlinks that are expected to exist
5959
RUN cd /usr/local/bin \
60-
&& ln -s easy_install-3.4 easy_install \
60+
&& ln -s easy_install-3.5 easy_install \
6161
&& ln -s idle3 idle \
6262
&& ln -s pydoc3 pydoc \
6363
&& ln -s python3 python \

0 commit comments

Comments
 (0)