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')"
93
93
ENV VDIFFR=true
94
94
EXPOSE 3838
95
95
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
+
96
100
# install any new dependencies, then either manage cases (the default) or run tests
97
101
# note the workaround to get docker to run a proper exit status when there are testthat errors
98
102
# https://github.com/r-lib/testthat/issues/515#issuecomment-304169376
99
103
100
- ENTRYPOINT R -e "devtools::install_deps('/home/plotly', dep = T); \
104
+ CMD R -e "devtools::install_deps('/home/plotly', dep = T); \
101
105
if (!identical(Sys.getenv('VMODE'), 'ci')) vdiffr::manage_cases('/home/plotly'); \
102
106
res <- devtools::test('/home/plotly', reporter='summary'); \
103
107
df <- as.data.frame(res); \
You can’t perform that action at this time.
0 commit comments