Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 04f2338

Browse files
committed
Make sure lsb_release is present
1 parent 589d4c2 commit 04f2338

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

containers/azure-machine-learning-python-3/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM python:3
99
RUN apt-get update && apt-get -y install git procps
1010

1111
# [Optional] Install Docker CE - Remove if you won't be doing local testing
12-
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
12+
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
1313
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
1414
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
1515
&& apt-get update \

containers/azure-terraform/.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ RUN apt-get update \
1616
apt-transport-https \
1717
ca-certificates \
1818
gnupg-agent \
19-
software-properties-common
19+
software-properties-common \
20+
lsb-release
2021

2122
# [Optional] Install Node.js for Azure Cloud Shell support
2223
# Change the "lts/*" in the two lines below to pick a different version

containers/docker-in-docker-compose/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FROM debian:9
1010
RUN apt-get update && apt-get -y install git procps
1111

1212
# Install Docker CE CLI
13-
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
13+
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
1414
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
1515
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
1616
&& apt-get update \

containers/docker-in-docker/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ FROM debian:9
1111
RUN apt-get update && apt-get -y install git procps
1212

1313
# Install Docker CE CLI
14-
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
14+
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
1515
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
1616
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
1717
&& apt-get update \

containers/javascript-node-8/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM node:8
99
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install yarn
12-
RUN apt-get install -y curl apt-transport-https \
12+
RUN apt-get install -y curl apt-transport-https lsb-release \
1313
&& curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - \
1414
&& echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
1515
&& apt-get update \

containers/javascript-node-lts-mongo/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM node:lts
99
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install yarn
12-
RUN apt-get install -y curl apt-transport-https \
12+
RUN apt-get install -y curl apt-transport-https lsb-release \
1313
&& curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - \
1414
&& echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
1515
&& apt-get update \

containers/javascript-node-lts/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM node:lts
99
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install yarn
12-
RUN apt-get install -y curl apt-transport-https \
12+
RUN apt-get install -y curl apt-transport-https lsb-release \
1313
&& curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - \
1414
&& echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
1515
&& apt-get update \

containers/kubernetes-helm/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get -y install git procps
1111

1212

1313
# Install Docker CE CLI
14-
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
14+
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
1515
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
1616
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
1717
&& apt-get update \

containers/typescript-node-8/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM node:8
99
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install yarn
12-
RUN apt-get install -y apt-transport-https \
12+
RUN apt-get install -y curl apt-transport-https lsb-release \
1313
&& curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - \
1414
&& echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
1515
&& apt-get update \

containers/typescript-node-lts/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM node:lts
99
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install yarn
12-
RUN apt-get install -y apt-transport-https \
12+
RUN apt-get install -y curl apt-transport-https lsb-release \
1313
&& curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - \
1414
&& echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
1515
&& apt-get update \

0 commit comments

Comments
 (0)