Skip to content

Commit 526ee08

Browse files
committed
Update to 2.7.10 and update pip to 7.0.1
1 parent d03644b commit 526ee08

File tree

16 files changed

+19
-19
lines changed

16 files changed

+19
-19
lines changed

2.7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ ENV LANG C.UTF-8
1010
# gpg: key 18ADD4FF: public key "Benjamin Peterson <benjamin@python.org>" imported
1111
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
1212

13-
ENV PYTHON_VERSION 2.7.9
13+
ENV PYTHON_VERSION 2.7.10
1414

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

1818
RUN set -x \
1919
&& mkdir -p /usr/src/python \

2.7/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:2.7.9
1+
FROM python:2.7
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app

2.7/slim/Dockerfile

Lines changed: 2 additions & 2 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 18ADD4FF: public key "Benjamin Peterson <benjamin@python.org>" imported
1717
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
1818

19-
ENV PYTHON_VERSION 2.7.9
19+
ENV PYTHON_VERSION 2.7.10
2020

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

2424
RUN set -x \
2525
&& buildDeps='curl gcc libbz2-dev libc6-dev libsqlite3-dev libssl-dev make xz-utils zlib1g-dev' \

2.7/wheezy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ ENV LANG C.UTF-8
1010
# gpg: key 18ADD4FF: public key "Benjamin Peterson <benjamin@python.org>" imported
1111
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
1212

13-
ENV PYTHON_VERSION 2.7.9
13+
ENV PYTHON_VERSION 2.7.10
1414

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

1818
RUN set -x \
1919
&& mkdir -p /usr/src/python \

3.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 26DEA9D4613391EF3E25C
1313
ENV PYTHON_VERSION 3.2.6
1414

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

1818
RUN set -x \
1919
&& mkdir -p /usr/src/python \

3.2/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 26DEA9D4613391EF3E25C
1919
ENV PYTHON_VERSION 3.2.6
2020

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

2424
RUN set -x \
2525
&& buildDeps='curl gcc libbz2-dev libc6-dev libsqlite3-dev libssl-dev make xz-utils zlib1g-dev' \

3.2/wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 26DEA9D4613391EF3E25C
1313
ENV PYTHON_VERSION 3.2.6
1414

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

1818
RUN set -x \
1919
&& mkdir -p /usr/src/python \

3.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 26DEA9D4613391EF3E25C
1313
ENV PYTHON_VERSION 3.3.6
1414

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

1818
RUN set -x \
1919
&& mkdir -p /usr/src/python \

3.3/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.3.6
1+
FROM python:3.3
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app

3.3/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 26DEA9D4613391EF3E25C
1919
ENV PYTHON_VERSION 3.3.6
2020

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

2424
RUN set -x \
2525
&& buildDeps='curl gcc libbz2-dev libc6-dev libsqlite3-dev libssl-dev make xz-utils zlib1g-dev' \

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy