This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
vsts-agent-docker/windows/servercore/10.0.14393/standard/VS2017/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
89 lines (70 sloc)
2.84 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/vsts-agent:windows-servercore-10.0.14393 | |
ENV chocolateyUseWindowsCompression=false | |
RUN @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
RUN choco config set cachelocation C:\chococache | |
RUN choco install \ | |
git \ | |
nodejs \ | |
jdk8 \ | |
curl \ | |
maven \ | |
gradle \ | |
ant \ | |
docker \ | |
ruby \ | |
--confirm \ | |
--limit-output \ | |
--timeout 216000 \ | |
&& rmdir /S /Q C:\chococache | |
# choco install visualstudio2015community --confirm --timeout 216000 \ | |
RUN choco install \ | |
dotnet4.6.1 \ | |
--confirm \ | |
--limit-output \ | |
&& rmdir /S /Q C:\chococache | |
RUN choco install \ | |
visualstudio2017enterprise \ | |
--package-parameters "--passive --locale en-US --includeOptional" \ | |
--confirm \ | |
--limit-output \ | |
--timeout 216000 \ | |
&& rmdir /S /Q C:\chococache | |
RUN choco install \ | |
visualstudio2017-workload-azure \ | |
visualstudio2017-workload-netcoretools \ | |
visualstudio2017-workload-netweb \ | |
--confirm \ | |
--limit-output \ | |
--timeout 21600 \ | |
--package-parameters "--includeOptional" \ | |
&& rmdir /S /Q C:\chococache | |
# common node tools | |
RUN npm install gulp -g && npm install grunt -g && npm install -g less && npm install phantomjs-prebuilt -g | |
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] | |
# Install .NET Core | |
ENV DOTNET_VERSION 1.1.1 | |
ENV DOTNET_DOWNLOAD_URL https://dotnetcli.blob.core.windows.net/dotnet/release/1.1.0/Binaries/$DOTNET_VERSION/dotnet-win-x64.$DOTNET_VERSION.zip | |
RUN Invoke-WebRequest $Env:DOTNET_DOWNLOAD_URL -OutFile dotnet.zip; \ | |
Expand-Archive dotnet.zip -DestinationPath $Env:ProgramFiles\dotnet -Force; \ | |
Remove-Item -Force dotnet.zip | |
# Install .NET Core | |
ENV DOTNET_VERSION 1.0.4 | |
ENV DOTNET_DOWNLOAD_URL https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/$DOTNET_VERSION/dotnet-win-x64.$DOTNET_VERSION.zip | |
RUN Invoke-WebRequest $Env:DOTNET_DOWNLOAD_URL -OutFile dotnet.zip; \ | |
Expand-Archive dotnet.zip -DestinationPath $Env:ProgramFiles\dotnet -Force; \ | |
Remove-Item -Force dotnet.zip | |
# Install .NET Core SDK | |
ENV DOTNET_SDK_VERSION 1.0.1 | |
ENV DOTNET_SDK_DOWNLOAD_URL https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSION/dotnet-dev-win-x64.$DOTNET_SDK_VERSION.zip | |
RUN Invoke-WebRequest $Env:DOTNET_SDK_DOWNLOAD_URL -OutFile dotnet.zip; \ | |
Expand-Archive dotnet.zip -DestinationPath $Env:ProgramFiles\dotnet -Force; \ | |
Remove-Item -Force dotnet.zip | |
SHELL ["cmd", "/S", "/C"] | |
RUN setx /M PATH "%PATH%;%ProgramFiles%\dotnet" | |
# Trigger the population of the local package cache | |
ENV NUGET_XMLDOC_MODE skip | |
RUN mkdir C:\warmup \ | |
&& cd C:\warmup \ | |
&& dotnet new \ | |
&& cd .. \ | |
&& rmdir /S /Q C:\warmup | |