Skip to content

Commit

Permalink
container: Only install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Aug 30, 2024
1 parent 65e278e commit 93f964c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion util/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ RUN /opt/python/bin/python3 -m venv ${VIRTUAL_ENV}
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
# Install Python requirements
COPY pyproject.toml .
RUN pip install .[docs]
RUN pip install pip-tools
RUN pip-compile --extra docs -o requirements.txt pyproject.toml
RUN pip install -r requirements.txt

# Add Verilator to PATH
ENV PATH "/tools/verilator/bin:${PATH}"
Expand Down

0 comments on commit 93f964c

Please sign in to comment.