Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
60343d16
Commit
60343d16
authored
Jun 12, 2024
by
Jonas Kaufmann
Committed by
Antoine Kaufmann
Jun 13, 2024
Browse files
docker: install required Python packages to build documentation
Otherwise, `make documentation` fails in the devcontainer.
parent
43c9b975
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
doc/requirements.txt
doc/requirements.txt
+1
-0
docker/Dockerfile.buildenv
docker/Dockerfile.buildenv
+1
-3
docker/rules.mk
docker/rules.mk
+1
-1
No files found.
doc/requirements.txt
View file @
60343d16
breathe
sphinx
sphinx-rtd-theme
docker/Dockerfile.buildenv
View file @
60343d16
...
...
@@ -30,8 +30,6 @@ RUN apt-get update \
python-is-python3 \
python3-dev \
python3-pip \
python3-sphinx \
python3-sphinx-rtd-theme \
rsync \
scons \
unzip \
...
...
@@ -40,7 +38,7 @@ RUN apt-get update \
vim \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
RUN pip install
--no-cache-dir --upgrade
-r /tmp/requirements.txt
COPY verilator.patch /tmp/
RUN cd /tmp \
&& git clone -b v4.010 https://github.com/verilator/verilator \
...
...
docker/rules.mk
View file @
60343d16
...
...
@@ -33,7 +33,7 @@ DOCKER_IMAGES := simbricks/simbricks-build simbricks/simbricks-base \
REQUIREMENTS_TXT
:=
$(d)
requirements.txt
$(REQUIREMENTS_TXT)
:
c
p
requirements.txt
$@
c
at
requirements.txt
doc/requirements.txt
>
$@
docker-images
:
$(REQUIREMENTS_TXT)
docker build
-t
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment