From 1a3e2f3172d2b6d030084ea8932b758379cae05f Mon Sep 17 00:00:00 2001 From: Tim Fischer Date: Thu, 29 Aug 2024 23:11:52 +0200 Subject: [PATCH] container: Copy `pyproject.toml` --- util/container/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/util/container/Dockerfile b/util/container/Dockerfile index 2ae3e89b0..230774b04 100644 --- a/util/container/Dockerfile +++ b/util/container/Dockerfile @@ -162,6 +162,7 @@ ENV VIRTUAL_ENV "/root/.venvs/snitch_cluster" 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] # Add Verilator to PATH