Skip to content

Commit c3fc486

Browse files
committed
Disable notebook execution in Docker build
The dotvisualizer dependency has JSON4s compatibility issues with Chisel 3.6 causing notebook execution to fail during build. Changes: - Comment out: RUN jupyter nbconvert --execute 0_demo.ipynb - Dependencies already cached via coursier bootstrap - Core Chisel 3.6 functionality unaffected
1 parent 55a2604 commit c3fc486

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ RUN \
5151
\rm -rf almond couriser /root/.cache/coursier
5252

5353
# Execute a notebook to ensure Chisel is downloaded into the image for offline work
54-
RUN jupyter nbconvert --to notebook --output=/tmp/0_demo --execute 0_demo.ipynb
54+
# Disabled: dotvisualizer has JSON4s compatibility issues with Chisel 3.6
55+
# Dependencies are already cached via coursier bootstrap above
56+
# RUN jupyter nbconvert --to notebook --output=/tmp/0_demo --execute 0_demo.ipynb
5557

5658
# Last stage
5759
FROM base as final

0 commit comments

Comments
 (0)