Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 680 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 680 Bytes

This helps build an ubuntu-based image to run jupyter with rpy2 for polyglot (python + R) data science notebooks.

The naming convention for the base image is the one used in the documentation for the base rpy2 image (see its README).

docker build -t rpy2/jupyter-ubuntu:master-default .

As with the base image, the ubuntu release and rpy2 version can be specified at build time (again, see the documentation for the base image).

RPY2_VERSION=3.4.3
UBUNTU_RELEASE=20.04
docker build -t rpy2/jupyter-ubuntu:"${RPY2_VERSION}"-default \
  --build-arg RPY2_VERSION="${RPY2_VERSION}" \
  --build-arg UBUNTU_RELEASE="${UBUNTU_RELEASE}" .