We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950d01f commit 824eb6cCopy full SHA for 824eb6c
Dockerfile
@@ -16,8 +16,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
16
libunwind8 \
17
netcat \
18
libssl1.0 \
19
+ npm \
20
&& rm -rf /var/lib/apt/lists/*
-
21
+RUN apt-get install -y wget apt-transport-https software-properties-common
22
+RUN wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb"
23
+RUN dpkg -i packages-microsoft-prod.deb
24
+RUN apt-get update
25
+RUN apt-get install -y powershell
26
+RUN apt-get install -y dotnet-sdk-7.0
27
+RUN apt-get install -y dotnet-sdk-6.0
28
RUN curl -LsS https://aka.ms/InstallAzureCLIDeb | bash \
29
30
0 commit comments