I want to build a docker stack with r packge that lives on devtool. The package I want to add is Xiranga.
In Dockerfile I have the following
RUN R -e "install.packages("xaringanthemer", repos = "devtools::install_github("gadenbuie/xaringanthemer")"
I am building it on top of "FROM rocker/tidyverse".
When I run the build I get "Error: unexpected end of input".
I have 'devtools' package installed from R and is working fine from CLI. Not even sure, if it is possible to install packge from devtool on docker. Just need a sanity check.
Thanks,