There was an error while loading. Please reload this page.
1 parent 0e88765 commit ef259e5Copy full SHA for ef259e5
1 file changed
Dockerfile
@@ -1,4 +1,11 @@
1
FROM ghcr.io/r-devel/rcheckserver/ubuntu
2
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
+
10
COPY rechecktools /rechecktools
11
RUN R -e 'install.packages("remotes");remotes::install_local("/rechecktools");library(rechecktools)'
0 commit comments