Skip to content

Commit fb099ad

Browse files
committed
fix: update RStudio version and adjust build configuration for consistent push behavior
1 parent 88932fd commit fb099ad

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.devcontainer/3-jupyter/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ RUN apt-get update && \
1010
rm -rf /var/lib/apt/lists/* /tmp/library-scripts
1111

1212
### install RStudio server
13-
ARG RSTUDIO_VER="2023.12.1-402"
13+
### Stable version only available for amd64 architecture
14+
ARG RSTUDIO_VER="2025.05.1-513"
1415
ARG RSTUDIO_URL="https://download2.rstudio.org/server/jammy/amd64"
1516
RUN wget -q "${RSTUDIO_URL}/rstudio-server-${RSTUDIO_VER}-amd64.deb" && \
1617
apt-get install -yq --no-install-recommends ./rstudio*.deb && \
@@ -34,4 +35,4 @@ RUN echo 'options(repos=c(CRAN="https://cloud.r-project.org"))' > ~/.Rprofile &&
3435
R -q -e 'remotes::install_version("markdown", version="1.12")' && \
3536
R -q -e 'remotes::install_version("languageserver", version="0.3.16")' && \
3637
R -q -e 'remotes::install_version("httpgd", version="2.0.1")' && \
37-
R -q -e 'remotes::install_github("ManuelHentschel/vscDebugger")'
38+
R -q -e 'remotes::install_github("ManuelHentschel/vscDebugger", ref="v0.5.2")'

.github/workflows/build-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- config: 1-minimal
1616
command: uname -a
1717
platform: linux/amd64,linux/arm64
18-
push: never
18+
push: always
1919
- config: 2-matlab
2020
command: matlab -h || true # matlab -h returns 1 causing action to fail
2121
platform: linux/amd64,linux/arm64
22-
push: never
22+
push: always
2323
- config: 3-jupyter
2424
command: radian --version
2525
platform: linux/amd64 # RStudio Server does not support ARM architecture

0 commit comments

Comments
 (0)