Skip to content

Commit 4d640ed

Browse files
Update to 2.7.15, pip 10.0.1
1 parent fc39f75 commit 4d640ed

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

2.7/alpine3.4/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV PYTHONIOENCODING UTF-8
1414
RUN apk add --no-cache ca-certificates
1515

1616
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
17-
ENV PYTHON_VERSION 2.7.14
17+
ENV PYTHON_VERSION 2.7.15
1818

1919
RUN set -ex \
2020
&& apk add --no-cache --virtual .fetch-deps \

2.7/alpine3.6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV PYTHONIOENCODING UTF-8
1414
RUN apk add --no-cache ca-certificates
1515

1616
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
17-
ENV PYTHON_VERSION 2.7.14
17+
ENV PYTHON_VERSION 2.7.15
1818

1919
RUN set -ex \
2020
&& apk add --no-cache --virtual .fetch-deps \

2.7/alpine3.7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV PYTHONIOENCODING UTF-8
1414
RUN apk add --no-cache ca-certificates
1515

1616
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
17-
ENV PYTHON_VERSION 2.7.14
17+
ENV PYTHON_VERSION 2.7.15
1818

1919
RUN set -ex \
2020
&& apk add --no-cache --virtual .fetch-deps \

2.7/jessie/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
&& rm -rf /var/lib/apt/lists/*
1717

1818
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
19-
ENV PYTHON_VERSION 2.7.14
19+
ENV PYTHON_VERSION 2.7.15
2020

2121
RUN set -ex \
2222
&& buildDeps=' \

2.7/jessie/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1919
&& rm -rf /var/lib/apt/lists/*
2020

2121
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
22-
ENV PYTHON_VERSION 2.7.14
22+
ENV PYTHON_VERSION 2.7.15
2323

2424
RUN set -ex \
2525
&& buildDeps=" \

2.7/stretch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
&& rm -rf /var/lib/apt/lists/*
1717

1818
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
19-
ENV PYTHON_VERSION 2.7.14
19+
ENV PYTHON_VERSION 2.7.15
2020

2121
RUN set -ex \
2222
&& buildDeps=' \

2.7/stretch/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1919
&& rm -rf /var/lib/apt/lists/*
2020

2121
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
22-
ENV PYTHON_VERSION 2.7.14
22+
ENV PYTHON_VERSION 2.7.15
2323

2424
RUN set -ex \
2525
&& buildDeps=" \

2.7/wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
&& rm -rf /var/lib/apt/lists/*
1717

1818
ENV GPG_KEY C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
19-
ENV PYTHON_VERSION 2.7.14
19+
ENV PYTHON_VERSION 2.7.15
2020

2121
RUN set -ex \
2222
&& buildDeps=' \

2.7/windows/windowsservercore-1709/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM microsoft/windowsservercore:1709
22

33
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
44

5-
ENV PYTHON_VERSION 2.7.14
6-
ENV PYTHON_RELEASE 2.7.14
5+
ENV PYTHON_VERSION 2.7.15
6+
ENV PYTHON_RELEASE 2.7.15
77

88
RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}.amd64.msi' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \
99
Write-Host ('Downloading {0} ...' -f $url); \

2.7/windows/windowsservercore-ltsc2016/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM microsoft/windowsservercore:ltsc2016
22

33
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
44

5-
ENV PYTHON_VERSION 2.7.14
6-
ENV PYTHON_RELEASE 2.7.14
5+
ENV PYTHON_VERSION 2.7.15
6+
ENV PYTHON_RELEASE 2.7.15
77

88
RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}.amd64.msi' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \
99
Write-Host ('Downloading {0} ...' -f $url); \

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