mirror of
https://github.com/flutter/flutter.git
synced 2026-01-29 23:02:44 +08:00
* Configure Cirrus CI * Read file directly instead of shelling a command * Wait for all streams to finish * Add LTR `textDirection` Since `RenderFlex#_debugHasNecessaryDirections` requires it when `direction` is horizontal and there are multiple children.
13 lines
479 B
Docker
13 lines
479 B
Docker
FROM microsoft/windowsservercore:1709
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
|
|
RUN netsh interface ipv4 set subinterface 'vEthernet (Ethernet)' mtu=1460 store=persistent
|
|
|
|
RUN Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
|
|
|
RUN choco install -y git
|
|
|
|
SHELL ["cmd", "/S", "/C"]
|
|
|
|
RUN setx /m PATH "%PATH%;C:\nodejs" |