File tree 2 files changed +20
-4
lines changed
2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,10 @@ RUN apt-get update \
30
30
# .NET SDK MSBuild requires US.UTF-8 locale to execute tasks
31
31
RUN locale-gen en_US.UTF-8
32
32
33
- # Install Azure CLI
34
- RUN curl -L -o azure-cli_focal_all.deb https://aka.ms/InstallAzureCliFocalEdge \
35
- && dpkg -i azure-cli_focal_all.deb
33
+ # Install Azure CLI - https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt#option-1-install-with-one-command
34
+ RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash \
35
+ # Install script does apt-get update and install, so we need to clean up after it.
36
+ && rm -rf /var/lib/apt/lists/*
36
37
37
38
# Runtime dependencies
38
39
RUN apt-get update \
Original file line number Diff line number Diff line change 96
96
{
97
97
"platforms" : [
98
98
{
99
- "dockerfile" : " src/ubuntu/20.04/amd64 " ,
99
+ "dockerfile" : " src/ubuntu/20.04" ,
100
100
"os" : " linux" ,
101
101
"osVersion" : " focal" ,
102
102
"tags" : {
109
109
}
110
110
]
111
111
},
112
+ {
113
+ "platforms" : [
114
+ {
115
+ "architecture" : " arm64" ,
116
+ "dockerfile" : " src/ubuntu/20.04" ,
117
+ "os" : " linux" ,
118
+ "osVersion" : " focal" ,
119
+ "tags" : {
120
+ "ubuntu-20.04-arm64-$(System:TimeStamp)-$(System:DockerfileGitCommitSha)" : {},
121
+ "ubuntu-20.04-arm64$(FloatingTagSuffix)" : {}
122
+ },
123
+ "variant" : " v8"
124
+ }
125
+ ]
126
+ },
112
127
{
113
128
"platforms" : [
114
129
{
You can’t perform that action at this time.
0 commit comments