Skip to content

Commit cf2a31c

Browse files
committed
R 4.5.0
1 parent 01b4921 commit cf2a31c

File tree

5 files changed

+11
-14
lines changed

5 files changed

+11
-14
lines changed

CHANGELOG

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@
44

55
- blackbar-vscode
66
- Upgrade to Ubuntu 24.04
7+
- Upgrade to R 4.5.0
78
- Python packages
89
- added prefect==3.4.22 and prefect-dask==0.3.6
910
- upgrade to pycaprio==0.3.0 and dkpro-cassis==0.10.1
1011
- blackbar-rstudio
1112
- Upgrade to Ubuntu 24.04
12-
- Upgrade to R 4.4.3
13+
- Upgrade to R 4.5.0
1314
- Python packages
1415
- added prefect==3.4.22 and prefect-dask==0.3.6
1516
- upgrade to pycaprio==0.3.0 and dkpro-cassis==0.10.1
1617
- blackbar-shinyproxy
1718
- blackbar-shinyproxy-3.2.0 added
1819
- Based on Ubuntu 24.04 and Java 21 adding "-XX:MaxRAMPercentage=50.0", "-XX:MinRAMPercentage=20.0", "-XX:+ExitOnOutOfMemoryError" to java options at startup
19-
- blackbar-base
20+
- blackbar-base and blackbar-base-apps
2021
- Upgrade to prefect 3.4.22
2122
- Based on Debian 13 (trixie)
2223

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ docker pull ghcr.io/bnosac/blackbar-shinyproxy-3.0.2:latest
5050
- blackbar development environments
5151

5252
- **blackbar-rstudio**:
53-
- Docker image containing RStudio, R 4.4.3, Python 3.10, Python packages relevant for blackbar, Java 21, based on Ubuntu 24.04 (release >= 0.3.0)
53+
- Docker image containing RStudio, R 4.5.0, Python 3.10, Python packages relevant for blackbar, Java 21, based on Ubuntu 24.04 (release >= 0.3.0)
5454
- Docker image containing RStudio, R 4.2.1, Python 3.10, Python packages relevant for blackbar, Java 21, based on Ubuntu 20.04 (release <= 0.2.2)
5555
- **blackbar-vscode**:
56-
- Docker image containing Visual Studio code-server 4.99.3, R 4.4.3, Python 3.10, Python packages relevant for blackbar, Java 21, based on Ubuntu 24.04 (release >= 0.3.0)
56+
- Docker image containing Visual Studio code-server 4.99.3, R 4.5.0, Python 3.10, Python packages relevant for blackbar, Java 21, based on Ubuntu 24.04 (release >= 0.3.0)
5757
- Docker image containing Visual Studio code-server 4.99.3, R 4.2.1, Python 3.10, Python packages relevant for blackbar, Java 21, based on Ubuntu 20.04 (release <= 0.2.2)
5858

5959
```

apps/Dockerfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ LABEL org.opencontainers.image.licenses="Apache-2.0"
99
##
1010
RUN apt update -qq \
1111
&& apt-get install -y lsb-release \
12-
&& apt-get install -y --reinstall software-properties-common dirmngr \
13-
&& gpg --keyserver keyserver.ubuntu.com --recv-key '95C0FAF38DB3CCAD0C080A7BDC78B2DDEABC47B7' \
14-
&& gpg --armor --export '95C0FAF38DB3CCAD0C080A7BDC78B2DDEABC47B7' | tee -a /etc/apt/trusted.gpg.d/cran_debian_key.asc \
15-
&& add-apt-repository -y "deb https://cloud.r-project.org/bin/linux/debian $(lsb_release -cs)-cran40/" \
16-
&& apt-get update \
12+
&& apt-get install -y --reinstall dirmngr \
1713
&& apt-get install -y --no-install-recommends wget libcurl4-openssl-dev libssl-dev curl bash git pkg-config \
1814
&& apt-get install -y --no-install-recommends r-base \
1915
&& apt-get install -y --no-install-recommends r-cran-rcpp r-cran-data.table r-cran-jsonlite r-cran-zip \
@@ -33,8 +29,8 @@ RUN echo "\noptions(shiny.port = 3838, shiny.host = '0.0.0.0')" >> /etc/R/Rprofi
3329
##
3430
USER root
3531
RUN echo $(python -c "import site; print('\n'.join(site.getsitepackages()))")
36-
RUN python -m pip install --no-cache-dir --target=$(python -c "import site; print('\n'.join(site.getsitepackages()))") dkpro-cassis prefect-dask prefect websockets htmltools gunicorn --upgrade
37-
#RUN python -m pip install --no-cache-dir --target=$(python -c "import site; print('\n'.join(site.getsitepackages()))") websockets htmltools gunicorn --upgrade
32+
#RUN python -m pip install --no-cache-dir --target=$(python -c "import site; print('\n'.join(site.getsitepackages()))") dkpro-cassis prefect-dask prefect websockets htmltools gunicorn --upgrade
33+
RUN python -m pip install --no-cache-dir --target=$(python -c "import site; print('\n'.join(site.getsitepackages()))") websockets htmltools gunicorn --upgrade
3834

3935
##
4036
## User blackbar

development/rstudio/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Ubuntu 24.04 with RStudio
2-
FROM ghcr.io/rocker-org/rstudio:4.4.3
2+
FROM ghcr.io/rocker-org/rstudio:4.5.0
33

44
##
55
## System requirements

development/vscode/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Ubuntu 24.04 VS Code Server
2-
FROM ghcr.io/rocker-org/rstudio:4.4.3 AS rstudio
2+
FROM ghcr.io/rocker-org/rstudio:4.5.0 AS rstudio
33
FROM codercom/code-server:4.99.3-noble
44

55
USER root
66

77
ENV CRAN="https://p3m.dev/cran/__linux__/noble/latest"
88
ENV LANG=en_US.UTF-8
9-
ENV R_VERSION="4.4.3"
9+
ENV R_VERSION="4.5.0"
1010
ENV R_HOME="/usr/local/lib/R"
1111
ENV TZ="Etc/UTC"
1212

0 commit comments

Comments
 (0)