Skip to content

Commit

Permalink
Update dockerfile to be able to render pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
Piloxita committed Dec 13, 2024
1 parent 5334a1a commit 5913b36
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,23 @@ FROM quay.io/jupyter/minimal-notebook:afe30f0c9ad8

COPY conda-linux-64.lock /tmp/conda-linux-64.lock

USER root

# install lmodern for Quarto PDF rendering
RUN sudo apt update \
&& sudo apt install -y \
lmodern

USER $NB_UID

RUN mamba update --quiet --file /tmp/conda-linux-64.lock \
&& mamba clean --all -y -f \
&& fix-permissions "${CONDA_DIR}" \
&& fix-permissions "/home/${NB_USER}"

RUN pip install deepchecks==0.18.1 seaborn==0.13.2 altair-ally==0.1.1
RUN pip install \
deepchecks==0.18.1 \
seaborn==0.13.2 \
altair-ally==0.1.1

RUN echo "Done Building Container!!"
Empty file removed reports/placeholder.txt
Empty file.

0 comments on commit 5913b36

Please sign in to comment.