mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
85d5a3348c
Cirrus CI got some optimizations for containers based of `microsoft/windowsservercore:latest`. Now startup time for windows builds is around 1:30 seconds instead of around 4 minutes. to: @aslushnikov
12 lines
487 B
Docker
12 lines
487 B
Docker
FROM microsoft/windowsservercore:latest
|
|
|
|
ENV NODE_VERSION 7.10.1
|
|
|
|
RUN setx /m PATH "%PATH%;C:\nodejs"
|
|
|
|
RUN powershell -Command \
|
|
netsh interface ipv4 set subinterface 18 mtu=1460 store=persistent ; \
|
|
Invoke-WebRequest $('https://nodejs.org/dist/v{0}/node-v{0}-win-x64.zip' -f $env:NODE_VERSION) -OutFile 'node.zip' -UseBasicParsing ; \
|
|
Expand-Archive node.zip -DestinationPath C:\ ; \
|
|
Rename-Item -Path $('C:\node-v{0}-win-x64' -f $env:NODE_VERSION) -NewName 'C:\nodejs'
|