Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for R plotting regression #278

Merged
merged 1 commit into from
Sep 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion all-spark-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ RUN apt-get update && \
USER $NB_USER

# R packages
# Pin r-base to a specific build number for https://github.com/jupyter/docker-stacks/issues/210#issuecomment-246081809
RUN conda config --add channels r && \
conda install --quiet --yes \
'r-base=3.3*' \
'r-base=3.3.1 1' \
'r-irkernel=0.6*' \
'r-ggplot2=2.1*' \
'r-rcurl=1.95*' && conda clean -tipsy
Expand Down
3 changes: 2 additions & 1 deletion datascience-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ RUN apt-get update && \
USER $NB_USER

# R packages including IRKernel which gets installed globally.
# Pin r-base to a specific build number for https://github.com/jupyter/docker-stacks/issues/210#issuecomment-246081809
RUN conda config --add channels r && \
conda install --quiet --yes \
'rpy2=2.8*' \
'r-base=3.3*' \
'r-base=3.3.1 1' \
'r-irkernel=0.6*' \
'r-plyr=1.8*' \
'r-devtools=1.11*' \
Expand Down
3 changes: 2 additions & 1 deletion r-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ RUN apt-get update && \
USER $NB_USER

# R packages
# Pin r-base to a specific build number for https://github.com/jupyter/docker-stacks/issues/210#issuecomment-246081809
RUN conda config --add channels r && \
conda install --quiet --yes \
'r-base=3.3*' \
'r-base=3.3.1 1' \
'r-irkernel=0.6*' \
'r-plyr=1.8*' \
'r-devtools=1.11*' \
Expand Down