This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 11 files changed +13
-12
lines changed
azure-functions-dotnetcore-2.1/.devcontainer
azure-functions-dotnetcore-latest/.devcontainer
azure-machine-learning-python-3/.devcontainer
repository-containers/github.com/angular/angular/.devcontainer Expand file tree Collapse file tree 11 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ RUN apt-get update && apt-get -y install git procps
12
12
RUN apt-get install -y apt-transport-https curl gnupg2 lsb-release \
13
13
&& echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/azure-cli.list \
14
14
&& echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-debian-$(lsb_release -cs)-prod $(lsb_release -cs) main" > /etc/apt/sources.list.d/dotnetdev.list \
15
- && curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
15
+ && curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add - 2>/dev/null \
16
16
&& apt-get update \
17
17
&& apt-get install -y azure-cli azure-functions-core-tools
18
18
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ RUN apt-get update && apt-get -y install git procps
12
12
RUN apt-get install -y apt-transport-https curl gnupg2 lsb-release \
13
13
&& echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/azure-cli.list \
14
14
&& echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-debian-$(lsb_release -cs)-prod $(lsb_release -cs) main" > /etc/apt/sources.list.d/dotnetdev.list \
15
- && curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
15
+ && curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add - 2>/dev/null \
16
16
&& apt-get update \
17
17
&& apt-get install -y azure-cli azure-functions-core-tools
18
18
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ RUN apt-get update && apt-get -y install git procps
10
10
11
11
# Install Docker CE - ** COMMENT OUT IF YOU WILL ONLY RUN LOCAL OR IN AZURE **
12
12
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
13
- && curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
13
+ && curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - 2>/dev/null \
14
14
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" \
15
15
&& apt-get update \
16
16
&& apt-get install -y docker-ce-cli
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apt-get update && apt-get -y install git procps
11
11
12
12
# Install Docker CE CLI
13
13
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
14
- && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - \
14
+ && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - 2>/dev/null \
15
15
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
16
16
&& apt-get update \
17
17
&& apt-get install -y docker-ce-cli
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ You can adapt your own existing development container Docker Compose setup to su
24
24
25
25
``` Dockerfile
26
26
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
27
- && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - \
27
+ && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - 2>/dev/null \
28
28
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
29
29
&& apt-get update \
30
30
&& apt-get install -y docker-ce-cli
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ RUN apt-get update && apt-get -y install git procps
12
12
13
13
# Install Docker CE CLI
14
14
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
15
- && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - \
15
+ && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - 2>/dev/null \
16
16
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
17
17
&& apt-get update \
18
18
&& apt-get install -y docker-ce-cli
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ You can adapt your own existing development container Dockerfile to support this
25
25
``` Dockerfile
26
26
# Install Docker CE CLI
27
27
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
28
- && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - \
28
+ && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - 2>/dev/null \
29
29
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
30
30
&& apt-get update \
31
31
&& apt-get install -y docker-ce-cli
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ RUN apt-get update && apt-get -y install git procps
11
11
12
12
# Install Docker CE CLI
13
13
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
14
- && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - \
14
+ && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - 2>/dev/null \
15
15
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
16
16
&& apt-get update \
17
17
&& apt-get install -y docker-ce-cli
18
18
19
19
# Install kubectl
20
- RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \
20
+ RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - 2>/dev/null \
21
21
&& echo "deb https://apt.kubernetes.io/ kubernetes-$(lsb_release -cs) main" | tee -a /etc/apt/sources.list.d/kubernetes.list \
22
22
&& apt-get update \
23
23
&& apt-get install -y kubectl
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ You can adapt your own existing development container Dockerfile to support this
27
27
``` Dockerfile
28
28
# Install Docker CE CLI
29
29
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
30
- && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - \
30
+ && curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | apt-key add - 2>/dev/null \
31
31
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
32
32
&& apt-get update \
33
33
&& apt-get install -y docker-ce-cli
34
34
35
35
# Install kubectl
36
- RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \
36
+ RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - 2>/dev/null \
37
37
&& echo "deb https://apt.kubernetes.io/ kubernetes-$(lsb_release -cs) main" | tee -a /etc/apt/sources.list.d/kubernetes.list \
38
38
&& apt-get update \
39
39
&& apt-get install -y kubectl
Original file line number Diff line number Diff line change
1
+ Subproject commit 6e6357ef08552370ffb284f7717af0e4223ab0d5
You can’t perform that action at this time.
0 commit comments