mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-22 02:25:12 -05:00
11 lines
300 B
Docker
11 lines
300 B
Docker
FROM rocker/tidyverse:4.0.0-ubuntu18.04
|
|
|
|
# Install python
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y python3
|
|
|
|
# Create link for python
|
|
RUN ln -f /usr/bin/python3 /usr/bin/python
|
|
|
|
# Install additional R packages
|
|
RUN R -e "install.packages(c('optparse'), repos = 'https://cloud.r-project.org/')" |