Skip to content

Commit

Permalink
update dockerfile to include emo package
Browse files Browse the repository at this point in the history
  • Loading branch information
RedondoMA committed Oct 21, 2024
1 parent e3dda81 commit fffd130
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ RUN apt-get update -y \
&& mkdir /rmd

# add pkgs needed for labs
RUN Rscript -e 'install.packages(c("nycflights13","vcd","patchwork","vioplot","manipulateWidget", "emo"),repos = "https://packagemanager.posit.co/cran/__linux__/jammy/latest");' \
&& Rscript -e 'remotes::install_github("mkierczak/mkteachr");'
RUN Rscript -e 'install.packages(c("nycflights13","vcd","patchwork","vioplot","manipulateWidget"),repos = "https://packagemanager.posit.co/cran/__linux__/jammy/latest");' \
&& Rscript -e 'remotes::install_github("mkierczak/mkteachr");' \
&& Rscript -e 'remotes::install_github("hadley/emo");'

WORKDIR /rmd

0 comments on commit fffd130

Please sign in to comment.