We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 357cdd3 commit 64a3f7bCopy full SHA for 64a3f7b
Dockerfile
@@ -0,0 +1,22 @@
1
+FROM rocker/rstudio:4.4.2
2
+
3
+RUN R -e "install.packages(c('renv', 'tinytex'), repos = c(CRAN = 'https://cloud.r-project.org'))"
4
+RUN R -e "tinytex::install_tinytex()"
5
6
+#RUN apt-get update -qq && apt-get -y --no-install-recommends install \
7
+# && install2.r --error --skipmissing --deps TRUE --skipinstalled \
8
+# tinytex
9
10
+#WORKDIR /project
11
+#COPY renv.lock renv.lock
12
13
+#RUN mkdir -p renv
14
+#COPY .Rprofile .Rprofile
15
+#COPY renv/activate.R renv/activate.R
16
+#COPY renv/settings.json renv/settings.json
17
18
+COPY . /project
19
+WORKDIR /project
20
21
+RUN R -e "renv::restore()"
22
+RUN quarto render
0 commit comments