Skip to content

Commit 5095fdc

Browse files
Merge pull request #117 from StefanScherer/update-python-3.6.1
Update Python 3.6.1 and base image 10.0.14393.1066
2 parents fac99ad + c8b5330 commit 5095fdc

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM microsoft/nanoserver
22

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

5-
ENV PYTHON_VERSION 3.6.0
5+
ENV PYTHON_VERSION 3.6.1
66
ENV PYTHON_PIP_VERSION 9.0.1
77

88
RUN Invoke-WebRequest $('https://www.python.org/ftp/python/{0}/python-{0}-embed-amd64.zip' -f $env:PYTHON_VERSION) -OutFile 'python.zip' -UseBasicParsing ; \

python/Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY tmp /Python
55

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

8-
ENV PYTHON_VERSION 3.6.0
8+
ENV PYTHON_VERSION 3.6.1
99
ENV PYTHON_PIP_VERSION 9.0.1
1010

1111
RUN $env:PATH = 'C:\Python;C:\Python\Scripts;{0}' -f $env:PATH ; \

python/build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
rem docker build -t python .
1+
# docker build -t python .
22

3-
docker rm -f pythonbuild36 2>&1
3+
# docker rm -f pythonbuild36 2>&1
44
docker pull python:3.6-windowsservercore
55
docker create --name=pythonbuild36 python:3.6-windowsservercore
66
docker cp pythonbuild36:Python tmp

python/push.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
docker tag python stefanscherer/python-windows:3.6.0-nano
1+
docker tag python stefanscherer/python-windows:3.6.1-nano
22
docker tag python stefanscherer/python-windows:nano
3-
docker push stefanscherer/python-windows:3.6.0-nano
3+
docker push stefanscherer/python-windows:3.6.1-nano
44
docker push stefanscherer/python-windows:nano

0 commit comments

Comments
 (0)