Skip to content

Commit

Permalink
Merge pull request davidADSP#21 from joehandzik/wip-fix-dockerfiles-g…
Browse files Browse the repository at this point in the history
…raphviz

Update Dockerfiles to include required graphviz packages
  • Loading branch information
davidADSP authored Dec 14, 2019
2 parents 552d58e + 1beb92c commit 8a5c240
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ ARG groupid=1000
ARG userid=1000
## end modify

RUN apt-get update && apt-get install -y \
graphviz \
libgraphviz-dev

COPY ./requirements.txt /
RUN python3 -m pip install --upgrade pip
RUN pip install -r /requirements.txt
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ ARG groupid=1000
ARG userid=1000
## end modify

RUN apt-get update && apt-get install -y \
graphviz \
libgraphviz-dev

COPY ./requirements.txt /
RUN python3 -m pip install --upgrade pip
RUN pip install -r /requirements.txt
Expand Down

0 comments on commit 8a5c240

Please sign in to comment.