File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:3.1-bionic AS build
22
33ENV \
44 NO_AT_BRIDGE=1 \
5- DOCKER_CONTAINER_NAME="ubuntu_netcore2_keyring " \
5+ DOCKER_CONTAINER_NAME="ubuntu_netcore_keyring " \
66 PSModuleAnalysisCachePath=/var/cache/microsoft/powershell/PSModuleAnalysisCache/ModuleAnalysisCache \
77 POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-DotnetCoreSDK-Ubuntu-18.04
88
@@ -13,9 +13,11 @@ RUN apt-get update \
1313 dbus-x11 \
1414 gnome-keyring
1515
16- # Install PowerShell
16+ # Install PowerShell && .Net SDK 2.1
1717RUN wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb \
1818 && dpkg -i packages-microsoft-prod.deb \
1919 && apt-get update \
2020 && apt-get install -y powershell \
21- && pwsh --version
21+ && pwsh --version \
22+ && apt-get install -y dotnet-sdk-2.1 \
23+ && dotnet --list-sdks
Original file line number Diff line number Diff line change 1212 vmImage : ' ubuntu-18.04'
1313
1414variables :
15- dockerfile : ./eng/containers/UbuntuNetCore2Keyring /Dockerfile
15+ dockerfile : ./eng/containers/UbuntuNetCoreKeyring /Dockerfile
1616 containerRegistry : ' azsdkengsys'
17- imageRepository : ' dotnet/ubuntu_netcore2_keyring '
17+ imageRepository : ' dotnet/ubuntu_netcore_keyring '
1818 imageTag : $(build.buildid)
1919
2020steps :
You can’t perform that action at this time.
0 commit comments