10 lines
402 B
Docker
10 lines
402 B
Docker
|
|
FROM local/gitea-windows-runner:windows-msys
|
||
|
|
|
||
|
|
SHELL ["powershell", "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command"]
|
||
|
|
|
||
|
|
# Dedicated profile for image builds. Docker daemon access is provided at runtime
|
||
|
|
# through the host named pipe mount configured in host_vars.
|
||
|
|
RUN Set-StrictMode -Version Latest; \
|
||
|
|
$ErrorActionPreference = 'Stop'; \
|
||
|
|
choco install docker-cli --yes --no-progress --limit-output
|