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

Commit faf62dd

Browse files
committed
Added procps to definitions
1 parent 3717cd5 commit faf62dd

File tree

35 files changed

+97
-94
lines changed

35 files changed

+97
-94
lines changed

container-templates/docker-compose/.devcontainer/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
# Debian and Ubuntu based images are supported. Alpine images are not yet supported.
1212
FROM ubuntu:bionic
1313

14-
# Install common tools developers typically will need like git
15-
RUN apt-get update \
16-
&& apt-get install -y git
14+
# Install git, process tools
15+
RUN apt-get update && apt-get -y install git procps
1716

1817
# *****************************************************
1918
# * Add steps for installing needed dependencies here *

container-templates/dockerfile/.devcontainer/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
# Debian and Ubuntu based images are supported. Alpine images are not yet supported.
77
FROM ubuntu:bionic
88

9-
# Install common tools developers typically will need
10-
RUN apt-get update \
11-
&& apt-get install -y git
9+
# Install git, process tools
10+
RUN apt-get update && apt-get -y install git procps
1211

1312
# *****************************************************
1413
# * Add steps for installing needed dependencies here *

containers/azure-cli/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
FROM debian:9
77

8-
# Install git
9-
RUN apt-get update && apt-get -y install git
8+
# Install git, process tools
9+
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install the Azure CLI
1212
RUN apt-get install -y apt-transport-https curl gnupg2 lsb-release \

containers/azure-functions-node-8/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
FROM microsoft/dotnet:2.1-sdk-stretch
77

8-
# Install git
9-
RUN apt-get update && apt-get -y install git
8+
# Install git, process tools
9+
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install Node.js
1212
RUN apt-get install -y curl \

containers/azure-hdinsight-python-3/.devcontainer/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
# HDInsight extension needs mono
77
FROM mono:5
88

9-
# Install git tools
10-
RUN apt-get update \
11-
&& apt-get install -y git
9+
# Install git, process tools
10+
RUN apt-get update && apt-get -y install git procps
1211

1312
# Install python 3
1413
RUN apt-get install -y python3 python3-pip

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55

66
FROM python:3.7-slim
77

8-
# Install required tools
9-
RUN apt-get update \
10-
&& apt-get install -y git
8+
# Install git, process tools
9+
RUN apt-get update && apt-get -y install git procps
1110

1211
# Install Docker CE - ** COMMENT OUT IF YOU WILL ONLY RUN LOCAL OR IN AZURE **
1312
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \

containers/azure-terraform/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# Pick any base image, but if you select node, skip installing node. 😊
77
FROM ubuntu:bionic
88

9-
# Install required tools
9+
# Install git, required tools
1010
RUN apt-get update \
11-
&& apt-get install -y git curl gnupg unzip
11+
&& apt-get install -y git curl gnupg unzip procps
1212

1313
# [Optional] Install Node.js for Azure Cloud Shell support
1414
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \

containers/cpp/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
FROM ubuntu:bionic
77

8-
# Install git
9-
RUN apt-get update && apt-get -y install git
8+
# Install git, process tools
9+
RUN apt-get update && apt-get -y install git procps
1010

1111
# Install C++ tools
1212
RUN apt-get -y install build-essential cmake cppcheck valgrind

containers/dart-web/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ENV PATH="$PATH":"/root/.pub-cache/bin"
99

1010
RUN pub global activate webdev
1111

12-
# Install git
13-
RUN apt-get update && apt-get -y install git
12+
# Install git, process tools
13+
RUN apt-get update && apt-get -y install git procps
1414

1515
# Clean up
1616
RUN apt-get autoremove -y \

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
# Note: You can use any Debian/Ubuntu based image you want.
77
FROM ubuntu:bionic
88

9-
# Install git
10-
RUN apt-get update \
11-
&& apt-get install -y git
9+
# Install git, process tools
10+
RUN apt-get update && apt-get -y install git procps
1211

1312
# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
1413
# to https://download.docker.com/linux/debian on the third line below.

0 commit comments

Comments
 (0)