Skip to content

Commit

Permalink
update dockerfile to render jupyter notebook equations (alshedivat#2758)
Browse files Browse the repository at this point in the history
Hello,

This pr should address the issue where the equations in jupter notebooks
were not being rendered correctly in issue
alshedivat#2757 .
  • Loading branch information
m-julian authored Oct 16, 2024
1 parent 7a97f9c commit 3d99612
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 3d99612

Please sign in to comment.