Skip to content

Commit

Permalink
fix(convertbot): Install additional fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
baumandm committed Mar 15, 2022
1 parent a15ca92 commit 58677be
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions packages/convertbot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ FROM node:16.13.1-buster
RUN apt-get update && apt-get install -y \
nano \
curl \
fonts-dejavu-core \
fonts-droid-fallback \
fonts-freefont-ttf \
fonts-liberation \
fonts-noto-mono \
git \
ghostscript \
libreoffice-common \
Expand All @@ -35,10 +30,26 @@ RUN apt-get update && apt-get install -y \
python3-pip \
texlive-latex-recommended \
texlive-xetex \
texlive-fonts-recommended \
texlive-generic-recommended \
unoconv \
&& rm -rf /var/lib/apt/lists/*
unoconv

# Fonts
RUN apt-get update && apt-get install -y \
fonts-crosextra-caladea \
fonts-crosextra-carlito \
fonts-dejavu-core \
fonts-droid-fallback \
fonts-ebgaramond \
fonts-firacode \
fonts-freefont-ttf \
fonts-inconsolata \
fonts-liberation2 \
fonts-noto-mono \
fonts-open-sans \
fonts-roboto \
texlive-fonts-recommended

RUN rm -rf /var/lib/apt/lists/*

RUN pip3 install nbconvert

Expand Down

0 comments on commit 58677be

Please # to comment.