Skip to content

Commit 1beb92c

Browse files
committed
Update Dockerfiles to include required graphviz packages
Based on success path from Issue #18, verified on Dockerfile.cpu run using 04_01_gan_camel_train Signed-Off-By: Joe Handzik <[email protected]>
1 parent 4030a5b commit 1beb92c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Dockerfile.cpu

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ ARG groupid=1000
1010
ARG userid=1000
1111
## end modify
1212

13+
RUN apt-get update && apt-get install -y \
14+
graphviz \
15+
libgraphviz-dev
16+
1317
COPY ./requirements.txt /
1418
RUN python3 -m pip install --upgrade pip
1519
RUN pip install -r /requirements.txt

Dockerfile.gpu

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ ARG groupid=1000
1010
ARG userid=1000
1111
## end modify
1212

13+
RUN apt-get update && apt-get install -y \
14+
graphviz \
15+
libgraphviz-dev
16+
1317
COPY ./requirements.txt /
1418
RUN python3 -m pip install --upgrade pip
1519
RUN pip install -r /requirements.txt

0 commit comments

Comments
 (0)