9 lines
310 B
Docker
9 lines
310 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; \
|
||
|
|
choco clean --yes
|