Skip to content

Commit 7639ee8

Browse files
authored
update dockerfile to render jupyter notebook equations (#2758)
Hello, This pr should address the issue where the equations in jupter notebooks were not being rendered correctly in issue #2757 .
1 parent 587b27e commit 7639ee8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
88
imagemagick \
99
build-essential \
1010
zlib1g-dev \
11-
jupyter-nbconvert \
11+
python3-pip \
1212
inotify-tools procps && \
13-
apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
13+
apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* && \
14+
pip install nbconvert --break-system-packages
1415

1516

1617
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \

0 commit comments

Comments
 (0)