From 7639ee82a8f54b9006d289228ae40b8e23808e6a Mon Sep 17 00:00:00 2001 From: Yulian Manchev <52214154+m-julian@users.noreply.github.com> Date: Wed, 16 Oct 2024 02:54:49 +0100 Subject: [PATCH] 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 https://github.com/alshedivat/al-folio/issues/2757 . --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6843d3d..f704814 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,10 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \ imagemagick \ build-essential \ zlib1g-dev \ - jupyter-nbconvert \ + python3-pip \ inotify-tools procps && \ - apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* + apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* && \ + pip install nbconvert --break-system-packages RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \