From 0f63d636c81ced1ee2ded5562173c3dca7d70233 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Tue, 2 Jan 2024 11:23:31 -0800 Subject: [PATCH] Install packages needed for quarto to knit to PDF Package list comes from the log provided by Nathan in https://2i2c.freshdesk.com/a/tickets/952, listing the packages needed by quarto PDF knitting. Ref https://github.com/2i2c-org/infrastructure/issues/2729 --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 675ca84..681451f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,13 @@ USER root COPY requirements.txt /tmp/requirements.txt RUN pip install --no-cache -r /tmp/requirements.txt +# Install packages needed for quarto knitting to PDF +RUN tlmgr install \ + scrartcl.cls \ + footnote.sty \ + tikzfill.image.sty \ + bookmark.sty + USER ${NB_USER} # Install learnr and other requested packages in https://2i2c.freshdesk.com/a/tickets/741