Files
a13labs.infra/ansible/files/dockerfiles/windows-runners/Dockerfile.windows-dotnet
T

9 lines
310 B
Docker
Raw Normal View History

FROM local/gitea-windows-runner:windows-base
SHELL ["powershell", "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command"]
# .NET profile for building and testing managed workloads.
RUN choco feature enable -n allowGlobalConfirmation; \
choco install dotnet-sdk --version=8.0.204; \
choco clean --yes