We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f02050d + 657f69f commit c40532bCopy full SHA for c40532b
Dockerfile
@@ -1,13 +1,10 @@
1
-FROM ubuntu AS base
+FROM mcr.microsoft.com/powershell:lts-ubuntu-20.04 AS base
2
RUN apt-get update \
3
&& apt-get install -y wget apt-transport-https software-properties-common \
4
- && wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
5
- && dpkg -i packages-microsoft-prod.deb \
6
- && rm packages-microsoft-prod.deb \
7
&& apt-get update \
8
&& add-apt-repository universe \
9
&& add-apt-repository ppa:git-core/ppa \
10
- && apt-get install -y git powershell \
+ && apt-get install -y git \
11
&& apt-get clean
12
RUN git config --global user.email "[email protected]" \
13
&& git config --global user.name "Integration Testing" \
0 commit comments