From 562e21b42e0e50aed41e625f6fe82adb892a8468 Mon Sep 17 00:00:00 2001 From: Howard Baek <50791792+howardbaek@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:30:23 -0700 Subject: [PATCH] Install quarto R package --- base_ottr/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/base_ottr/Dockerfile b/base_ottr/Dockerfile index 499da60..004052a 100644 --- a/base_ottr/Dockerfile +++ b/base_ottr/Dockerfile @@ -78,3 +78,11 @@ RUN Rscript install_github.R \ # Set final workdir for commands WORKDIR /home/rstudio + +RUN curl -LO https://quarto.org/download/latest/quarto-linux-amd64.deb +RUN gdebi --non-interactive quarto-linux-amd64.deb + +# Install quarto R package +RUN Rscript -e "options(warn = 2);install.packages( \ + c('quarto'), \ + repos = 'https://cloud.r-project.org/')"