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

Commit

Permalink
Added procps to definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Apr 12, 2019
1 parent 3717cd5 commit faf62dd
Show file tree
Hide file tree
Showing 35 changed files with 97 additions and 94 deletions.
5 changes: 2 additions & 3 deletions container-templates/docker-compose/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
# Debian and Ubuntu based images are supported. Alpine images are not yet supported.
FROM ubuntu:bionic

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

# *****************************************************
# * Add steps for installing needed dependencies here *
Expand Down
5 changes: 2 additions & 3 deletions container-templates/dockerfile/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
# Debian and Ubuntu based images are supported. Alpine images are not yet supported.
FROM ubuntu:bionic

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

# *****************************************************
# * Add steps for installing needed dependencies here *
Expand Down
4 changes: 2 additions & 2 deletions containers/azure-cli/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

FROM debian:9

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install the Azure CLI
RUN apt-get install -y apt-transport-https curl gnupg2 lsb-release \
Expand Down
4 changes: 2 additions & 2 deletions containers/azure-functions-node-8/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

FROM microsoft/dotnet:2.1-sdk-stretch

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install Node.js
RUN apt-get install -y curl \
Expand Down
5 changes: 2 additions & 3 deletions containers/azure-hdinsight-python-3/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
# HDInsight extension needs mono
FROM mono:5

# Install git tools
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install python 3
RUN apt-get install -y python3 python3-pip
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@

FROM python:3.7-slim

# Install required tools
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install Docker CE - ** COMMENT OUT IF YOU WILL ONLY RUN LOCAL OR IN AZURE **
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
Expand Down
4 changes: 2 additions & 2 deletions containers/azure-terraform/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# Pick any base image, but if you select node, skip installing node. 😊
FROM ubuntu:bionic

# Install required tools
# Install git, required tools
RUN apt-get update \
&& apt-get install -y git curl gnupg unzip
&& apt-get install -y git curl gnupg unzip procps

# [Optional] Install Node.js for Azure Cloud Shell support
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
Expand Down
4 changes: 2 additions & 2 deletions containers/cpp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

FROM ubuntu:bionic

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install C++ tools
RUN apt-get -y install build-essential cmake cppcheck valgrind
Expand Down
4 changes: 2 additions & 2 deletions containers/dart-web/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ENV PATH="$PATH":"/root/.pub-cache/bin"

RUN pub global activate webdev

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
5 changes: 2 additions & 3 deletions containers/docker-in-docker-compose/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
# Note: You can use any Debian/Ubuntu based image you want.
FROM ubuntu:bionic

# Install git
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
# to https://download.docker.com/linux/debian on the third line below.
Expand Down
5 changes: 2 additions & 3 deletions containers/docker-in-docker/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
# Note: You can use any Debian/Ubuntu based image you want.
FROM ubuntu:bionic

# Install git
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
# to https://download.docker.com/linux/debian on the third line below.
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-2.2-fsharp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ FROM microsoft/dotnet:2.2-sdk
# .NET Core should be used as the runtime.
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install fsharp
RUN apt-get install -y fsharp
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-2.2/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

FROM microsoft/dotnet:2.2-sdk

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
4 changes: 2 additions & 2 deletions containers/go/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ RUN go get -u -v \
github.com/mgechev/revive \
github.com/derekparker/delve/cmd/dlv

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
4 changes: 2 additions & 2 deletions containers/java-8-maven/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

FROM maven:3.6-jdk-8-slim

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
10 changes: 6 additions & 4 deletions containers/javascript-node-8/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@

FROM node:8-slim

# Install yarn and git
RUN apt-get update \
&& apt-get install -y apt-transport-https \
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install yarn
RUN apt-get install -y curl apt-transport-https \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install -y yarn git
&& apt-get install -y yarn

# Install eslint
RUN npm install -g eslint
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Node.js 8 & Yarn",
"name": "Node.js 8",
"dockerFile": ".devcontainer/Dockerfile",
"appPort": 3000,
"extensions": [
Expand Down
12 changes: 7 additions & 5 deletions containers/javascript-node-lts-mongo/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@

FROM node:lts-slim

# Install yarn and git
RUN apt-get update \
&& apt-get install -y apt-transport-https \
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install yarn
RUN apt-get install -y curl apt-transport-https \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install -y yarn git
&& apt-get install -y yarn

# Install eslint
RUN npm install -g eslint

Expand Down
10 changes: 6 additions & 4 deletions containers/javascript-node-lts/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@

FROM node:8-slim

# Install yarn and git
RUN apt-get update \
&& apt-get install -y apt-transport-https \
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install yarn
RUN apt-get install -y curl apt-transport-https \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install -y yarn git
&& apt-get install -y yarn

# Install eslint
RUN npm install -g eslint
Expand Down
6 changes: 3 additions & 3 deletions containers/kubernetes-helm/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

FROM ubuntu:bionic

# Install required tools
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps


# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
# to https://download.docker.com/linux/debian on the third line below.
Expand Down
5 changes: 2 additions & 3 deletions containers/markdown/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@

FROM ubuntu:bionic

# Install git
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
4 changes: 2 additions & 2 deletions containers/php-7/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN yes | pecl install xdebug \
&& echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \
&& echo "xdebug.remote_autostart=on" >> /usr/local/etc/php/conf.d/xdebug.ini

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
5 changes: 2 additions & 3 deletions containers/plantuml/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@

FROM java:11

# Install required tools
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install GraphViz
RUN apt-get install -y graphviz
Expand Down
5 changes: 2 additions & 3 deletions containers/powershell/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@

FROM microsoft/powershell

# Install required tools
RUN apt-get update \
&& apt-get install -y git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
4 changes: 2 additions & 2 deletions containers/python-2/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json

RUN pip install pylint

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install any missing dependencies for enhanced language service
RUN apt-get install -y libicu57
Expand Down
6 changes: 3 additions & 3 deletions containers/python-3-django/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ WORKDIR /workspace
COPY requirements.txt /workspace/
RUN pip install -r requirements.txt && rm -f requirements.txt

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install any missing dependencies for enhanced language service
RUN apt-get install -y libicu57
RUN apt-get install -y libicu[0-9][0-9]

# Clean up
RUN apt-get autoremove -y \
Expand Down
2 changes: 1 addition & 1 deletion containers/python-3-flask-redis/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN pip install -r requirements.txt && rm -f requirements.txt
RUN apt-get update && apt-get -y install git

# Install any missing dependencies for enhanced language service
RUN apt-get install -y libicu57
RUN apt-get install -y libicu[0-9][0-9]

# Clean up
RUN apt-get autoremove -y \
Expand Down
7 changes: 5 additions & 2 deletions containers/python-3-jupyter-pyspark/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ FROM jupyter/pyspark-notebook

USER root

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install any missing dependencies for enhanced language service
RUN apt-get install -y libicu[0-9][0-9]

# Clean up
RUN apt-get autoremove -y \
Expand Down
6 changes: 3 additions & 3 deletions containers/python-3/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json

RUN pip install pylint

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install any missing dependencies for enhanced language service
RUN apt-get install -y libicu57
RUN apt-get install -y libicu[0-9][0-9]

# Clean up
RUN apt-get autoremove -y \
Expand Down
4 changes: 2 additions & 2 deletions containers/ruby-2/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ FROM ruby:2
RUN gem install ruby-debug-ide
RUN gem install debase

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
Expand Down
4 changes: 2 additions & 2 deletions containers/rust/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
RUN rustup update
RUN rustup component add rls rust-analysis rust-src

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install other dependencies
RUN apt-get install -y lldb-3.9
Expand Down
4 changes: 2 additions & 2 deletions containers/swift-4/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ FROM swift:4
# Copy endpoint specific user setting overrides into container
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json

# Install git
RUN apt-get update && apt-get -y install git
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Install SourceKite, see https://github.com/vknabel/vscode-swift-development-environment/blob/master/README.md#installation
RUN git clone https://github.com/jinmingjian/sourcekite.git
Expand Down
Loading

0 comments on commit faf62dd

Please sign in to comment.