File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed
Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ FROM $BASE
33
44# Make code-server extensions etc persist to container, not hub
55ENV XDG_DATA_HOME=/opt/share
6+ # # Add rstudio's binaries to path for quarto
7+ ENV PATH=$PATH:/usr/lib/rstudio-server/bin/quarto/bin
68
79USER root
810# code-server (VSCode)
@@ -15,20 +17,9 @@ RUN curl -s https://raw.githubusercontent.com/rocker-org/ml/refs/heads/master/in
1517RUN adduser "$NB_USER" sudo && echo '%sudo ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers
1618
1719# Install R, RStudio
18- COPY install_r.sh /tmp/install_r.sh
19- RUN bash /tmp/install_r.sh
20-
21- COPY install_bspm.sh /tmp/install_bspm.sh
22- RUN bash /tmp/install_bspm.sh
23-
20+ RUN curl -s https://raw.githubusercontent.com/rocker-org/ml/refs/heads/master/install_r.sh | bash
2421RUN curl -s https://raw.githubusercontent.com/rocker-org/ml/refs/heads/master/install_rstudio.sh | bash
2522
26- # Configure Runiverse
27- COPY Rprofile /usr/lib/R/etc/Rprofile.site
28-
29- # # Add rstudio's binaries to path for quarto
30- ENV PATH=$PATH:/usr/lib/rstudio-server/bin/quarto/bin
31-
3223USER ${NB_USER}
3324
3425COPY vscode-extensions.txt /tmp/vscode-extensions.txt
You can’t perform that action at this time.
0 commit comments