Skip to content

Commit a1c577e

Browse files
committed
feat: added quarto
1 parent 4b088cc commit a1c577e

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Version:
2-
VERSION_TAG=4.2.1-9003
2+
VERSION_TAG=4.2.1-9004
33

44
## Ports:
55
COMPOSE_PROJECT_NAME=rdatascience_1

Dockerfiles/rdsc_rstudio_j.dockerfile

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ FROM joundso/rdsc_headless_j:latest
33
LABEL org.label-schema.schema-version="1.0" \
44
org.label-schema.url="https://github.com/joundso/r_datascience"
55

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+
613
# USER ${RSESSION_USER}
714

815
# # update all installed packages
@@ -11,12 +18,16 @@ LABEL org.label-schema.schema-version="1.0" \
1118

1219
# USER root
1320

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+
1427
# get RStudio-Server (Preview Version): https://www.rstudio.com/products/rstudio/download/preview/
1528
# 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"
2031
ENV RSTUDIO_LINK=${RSTUIO_URL}${RSTUDIO_FILE}
2132

2233
## install gdebi here, required to install rstudio

0 commit comments

Comments
 (0)