Skip to content

Commit

Permalink
R: install tidyjson from github
Browse files Browse the repository at this point in the history
  • Loading branch information
zapster committed Sep 20, 2017
1 parent ccffedc commit 0f03592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ENV PATH=/home/docker/usr/local/texlive/current/bin/x86_64-linux:$PATH \

# install R packages
COPY ./R.packages /tmp/
RUN Rscript -e 'p <- readLines("/tmp/R.packages"); install.packages(p, repos="http://cran.rstudio.com/", clean=TRUE); for(x in p) { if (!require(x,character.only = TRUE)) {quit(1)}}'
RUN Rscript -e 'p <- readLines("/tmp/R.packages"); install.packages(p, repos="http://cran.rstudio.com/", clean=TRUE); for(x in p) { if (!require(x,character.only = TRUE)) {quit(1)}};devtools::install_github("jeremystan/tidyjson")'

# install texlive packages
COPY ./texlive.packages /tmp/
Expand Down

0 comments on commit 0f03592

Please sign in to comment.