mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
b2fc285a5d
* CI: Add Windows backend tests in more places * CI: Add promotion pipeline for publishing new windows-test-images * CI: Ignore windows backend-test failures for now * CI: Fix linting issue in ci_images.star file
7 lines
402 B
Docker
7 lines
402 B
Docker
FROM golang:1.20.3-windowsservercore-1809
|
|
|
|
SHELL ["powershell", "-command"]
|
|
|
|
RUN Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
|
RUN choco install mingw -y --version 12.2.0.03042023
|