@@ -3,6 +3,13 @@ FROM joundso/rdsc_headless_j:latest
3
3
LABEL org.label-schema.schema-version="1.0" \
4
4
org.label-schema.url="https://github.com/joundso/r_datascience"
5
5
6
+ ARG \
7
+ # # Quarto: https://github.com/quarto-dev/quarto-cli/releases
8
+ QUARTO_VERSION="1.0.37" \
9
+
10
+ # # RStudio: https://www.rstudio.com/products/rstudio/download/preview/
11
+ RSTUDIO_VERSION="2022.07.1-554"
12
+
6
13
# USER ${RSESSION_USER}
7
14
8
15
# # update all installed packages
@@ -11,12 +18,16 @@ LABEL org.label-schema.schema-version="1.0" \
11
18
12
19
# USER root
13
20
21
+ # # Install quarto:
22
+ RUN curl -o quarto-linux-amd64.deb -L https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.deb && \
23
+ dpkg -i quarto-linux-amd64.deb && \
24
+ rm -f quarto-linux-amd64.deb
25
+
26
+
14
27
# get RStudio-Server (Preview Version): https://www.rstudio.com/products/rstudio/download/preview/
15
28
# ENV RSTUDIO_VERSION=1.4.1725 \
16
- ENV RSTUDIO_VERSION=2022.07.1 \
17
- RSTUDIO_VERSION_PREVIEW=554 \
18
- RSTUIO_URL=https://s3.amazonaws.com/rstudio-ide-build/server/bionic/amd64/
19
- ENV RSTUDIO_FILE="rstudio-server-${RSTUDIO_VERSION}-${RSTUDIO_VERSION_PREVIEW}-amd64.deb"
29
+ ENV RSTUIO_URL=https://s3.amazonaws.com/rstudio-ide-build/server/bionic/amd64/
30
+ ENV RSTUDIO_FILE="rstudio-server-${RSTUDIO_VERSION}-amd64.deb"
20
31
ENV RSTUDIO_LINK=${RSTUIO_URL}${RSTUDIO_FILE}
21
32
22
33
# # install gdebi here, required to install rstudio
0 commit comments