Jami Pekkanen commited on
Commit
03636b9
1 Parent(s): a18679a

Install graphviz

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -15,6 +15,8 @@ WORKDIR /code
15
 
16
  COPY ./requirements.txt /code/requirements.txt
17
 
 
 
18
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
19
 
20
  COPY . .
 
15
 
16
  COPY ./requirements.txt /code/requirements.txt
17
 
18
+ RUN apt-get update -y && apt-get upgrade -y && apt-get install -y graphviz
19
+
20
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
21
 
22
  COPY . .