Relative Content

Tag Archive for pythonrlinuxdockerdockerfile

Getting “‘4.4*’ for ‘r-base’ was not found” error while installing R 4.4.1 version using bookworm image as base

# Start with a base Debian image FROM python:3.13-rc-bookworm ARG R_VERSION=4.4.1 # Set environment variables ENV PYTHONUNBUFFERED 1 ENV DEBIAN_FRONTEND noninteractive # Install system dependencies RUN apt-get update && apt-get install -y gnupg wget software-properties-common dirmngr && rm -rf /var/lib/apt/lists/* # Add R repository RUN wget -qO- https://cloud.r-project.org/bin/linux/debian/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_debian_key.asc && add-apt-repository “deb […]