Skip to content

Commit

Permalink
node: add graphviz (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
grayside authored and bcoe committed Sep 17, 2019
1 parent 8eefbc5 commit bae8311
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions node/10-user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions node/11-user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions node/12-user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bae8311

Please sign in to comment.