From 2786cb986e5c522b0debda6fcceeecaf168b2fe3 Mon Sep 17 00:00:00 2001 From: auphelia <jakobapk@web.de> Date: Thu, 20 Feb 2020 12:05:34 +0000 Subject: [PATCH] [Dockerfile] Add sphinx installation to Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 734a8fd3f..a65be3e0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,11 @@ RUN pip install jupyter RUN pip install netron RUN pip install matplotlib RUN pip install pytest-dependency +RUN apt-get update +RUN apt-get -y upgrade RUN apt-get install -y build-essential libglib2.0-0 libsm6 libxext6 libxrender-dev RUN apt install verilator +RUN pip install sphinx # Note that we expect the cloned finn directory on the host to be # mounted on /workspace/finn -- see run-docker.sh for an example -- GitLab