Skip to content

Commit e01eb54

Browse files
Update to 3.6.3, pip 9.0.1
1 parent c46e67a commit e01eb54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

3.6/windows/windowsservercore/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ENV PYTHON_RELEASE 3.6.3
1313

1414
RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \
1515
Write-Host ('Downloading {0} ...' -f $url); \
16-
Invoke-WebRequest -Uri $url -OutFile python.exe; \
16+
Invoke-WebRequest -Uri $url -OutFile 'python.exe'; \
1717
\
1818
Write-Host 'Installing ...'; \
1919
# https://docs.python.org/3.5/using/windows.html#installing-without-ui
@@ -45,7 +45,7 @@ ENV PYTHON_PIP_VERSION 9.0.1
4545

4646
RUN Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); \
4747
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
48-
Invoke-WebRequest -Uri https://bootstrap.pypa.io/get-pip.py -OutFile get-pip.py; \
48+
Invoke-WebRequest -Uri 'https://bootstrap.pypa.io/get-pip.py' -OutFile 'get-pip.py'; \
4949
python get-pip.py \
5050
--disable-pip-version-check \
5151
--no-cache-dir \

0 commit comments

Comments
 (0)