Skip to content

Commit

Permalink
Merge pull request #41 from UBC-DSCI/tidyclust-fix
Browse files Browse the repository at this point in the history
Install libgsl-dev, build-essential, scales
  • Loading branch information
briank-git authored Mar 19, 2024
2 parents 9b29d51 + 27e689f commit c47ed97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/r-dsci-100/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM jupyter/r-notebook
USER root

# install vim and libgsl (for tidyclust)
RUN apt-get update && apt-get install -y vim libgsl27
RUN apt-get update && apt-get install -y vim libgsl27 libgsl-dev build-essential

USER ${NB_UID}

Expand All @@ -30,6 +30,7 @@ RUN mamba install --quiet --yes \
&& fix-permissions "/home/${NB_USER}" \
&& Rscript -e "remotes::install_github('allisonhorst/palmerpenguins@v0.1.0')" \
&& Rscript -e "install.packages('ISLR', repos='http://cran.us.r-project.org')" \
&& Rscript -e "install.packages('scales', repos='http://cran.us.r-project.org')" \
&& Rscript -e "install.packages('tidyclust', repos='http://cran.us.r-project.org')" \
&& Rscript -e "install.packages('janitor', repos='http://cran.us.r-project.org')"

Expand Down

0 comments on commit c47ed97

Please sign in to comment.