Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.04 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.04 KB

This helps build a jupyter-based data science environment for R + Python. This image will include more experimental and external dependency than rpy2/jupyter-ubuntu, such as:

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

Run (using automated build)

To run the latest (most recent rpy2/ubuntu of the builds), simply do

docker run -p 8888:8888 rpy2/jupyter_ds-ubuntu

Build

docker build -t rpy2/jupyter_ds-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).

Note that Ubuntu releases older than 20.04 are no longer supported.

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