8 lines
285 B
Docker
8 lines
285 B
Docker
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
|