dockerfiles-windows icon indicating copy to clipboard operation
dockerfiles-windows copied to clipboard

TLS 1.1 support terminated at github

Open alainsch opened this issue 7 years ago • 1 comments

Hi Elton,

Github terminated yesterday the support for TLS 1.1 ( https://github.com/blog/2507-weak-cryptographic-standards-removed )

All dockerfiles that do a Invoke-Webrequest from Github will fail on windows 2016.

I added the following to my scripts to solve this:

RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; ` Invoke-WebRequest ...

Alain

alainsch avatar Feb 24 '18 20:02 alainsch

Worked for me, Thank you Alain!

AidarGatin avatar Feb 22 '19 16:02 AidarGatin