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 .
This commit is contained in:
Yulian Manchev 2024-10-16 02:54:49 +01:00 committed by GitHub
parent 587b27e414
commit 7639ee82a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,9 +8,10 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
imagemagick \ imagemagick \
build-essential \ build-essential \
zlib1g-dev \ zlib1g-dev \
jupyter-nbconvert \ python3-pip \
inotify-tools procps && \ 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 && \ RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \