From c21cbbae317760bd047865f9e9c99ee776abe98f Mon Sep 17 00:00:00 2001 From: Adam Ross Date: Wed, 4 Sep 2019 15:34:48 -0700 Subject: [PATCH] node: add graphviz --- node/10-user/Dockerfile | 8 ++++++++ node/11-user/Dockerfile | 8 ++++++++ node/12-user/Dockerfile | 8 ++++++++ 3 files changed, 24 insertions(+) diff --git a/node/10-user/Dockerfile b/node/10-user/Dockerfile index fbfc53a8..fcfba5c0 100644 --- a/node/10-user/Dockerfile +++ b/node/10-user/Dockerfile @@ -14,6 +14,14 @@ FROM node:10-stretch +# Add Graphviz +RUN set -ex; \ + apt-get update -y; \ + apt-get install -y \ + graphviz \ + ; \ + rm -rf /var/lib/apt/lists/* + USER node RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash diff --git a/node/11-user/Dockerfile b/node/11-user/Dockerfile index abce4f35..f4e39e33 100644 --- a/node/11-user/Dockerfile +++ b/node/11-user/Dockerfile @@ -14,6 +14,14 @@ FROM node:11-stretch +# Add Graphviz +RUN set -ex; \ + apt-get update -y; \ + apt-get install -y \ + graphviz \ + ; \ + rm -rf /var/lib/apt/lists/* + USER node RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash diff --git a/node/12-user/Dockerfile b/node/12-user/Dockerfile index e7f02789..769fd0ad 100644 --- a/node/12-user/Dockerfile +++ b/node/12-user/Dockerfile @@ -14,6 +14,14 @@ FROM node:12-stretch +# Add Graphviz +RUN set -ex; \ + apt-get update -y; \ + apt-get install -y \ + graphviz \ + ; \ + rm -rf /var/lib/apt/lists/* + USER node RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash