8 lines
306 B
Docker
8 lines
306 B
Docker
|
|
FROM local/gitea-windows-runner:windows-base
|
||
|
|
|
||
|
|
SHELL ["powershell", "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command"]
|
||
|
|
|
||
|
|
# MSYS-focused profile with common GNU toolchain extras.
|
||
|
|
RUN choco feature enable -n allowGlobalConfirmation; \
|
||
|
|
choco install make msys2 unzip --yes --no-progress --limit-output
|