File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,15 @@ RUN R -e "devtools::install_github('brodieG/diffobj@development')"
9393ENV VDIFFR=true
9494EXPOSE 3838
9595
96+ # installing rgeos from CRAN is currently broken
97+ # http://r-sig-geo.2731867.n2.nabble.com/Re-Unexpected-configure-error-following-recent-rgeos-release-td7592423.html
98+ RUN R -e "install.packages('rgeos', repos='http://R-Forge.R-project.org', type='source')"
99+
96100# install any new dependencies, then either manage cases (the default) or run tests
97101# note the workaround to get docker to run a proper exit status when there are testthat errors
98102# https://github.com/r-lib/testthat/issues/515#issuecomment-304169376
99103
100- ENTRYPOINT R -e "devtools::install_deps('/home/plotly', dep = T); \
104+ CMD R -e "devtools::install_deps('/home/plotly', dep = T); \
101105 if (!identical(Sys.getenv('VMODE'), 'ci')) vdiffr::manage_cases('/home/plotly'); \
102106 res <- devtools::test('/home/plotly', reporter='summary'); \
103107 df <- as.data.frame(res); \
You can’t perform that action at this time.
0 commit comments