Skip to content

Commit ef259e5

Browse files
committed
Add quarto to the image
Fixes #13
1 parent 0e88765 commit ef259e5

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
FROM ghcr.io/r-devel/rcheckserver/ubuntu
22

3+
# Install quarto (seems like CRAN has it?)
4+
RUN \
5+
curl -L -o quarto.deb "https://github.com/quarto-dev/quarto-cli/releases/download/v1.10.11/quarto-1.10.11-linux-$(dpkg --print-architecture).deb" &&\
6+
dpkg -i quarto.deb &&\
7+
rm quarto.deb &&\
8+
quarto --version
9+
310
COPY rechecktools /rechecktools
411
RUN R -e 'install.packages("remotes");remotes::install_local("/rechecktools");library(rechecktools)'

0 commit comments

Comments
 (0)