You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would naively have done the latter, but the dash deployment docs are using init.R. Is this mostly to prevent the entire docker build from crashing if something is wrong with a user installed package or are there other advantages to this approach?
The text was updated successfully, but these errors were encountered:
Related, since the dash docks now uses install.packages('dash'), should the deployment docs be updated to use this instead of remotes::install_github('plotly/dashR', upgrade=TRUE)?
One advantage I ran into is that when trying to install devtools via the docker image, the build would fail due to an error with the dependency packages gert and usethis. I had to modify apt-packages to include libgit2-dev and libcurl4-gnutls-dev instead of libcurl4-openssl-dev for these packages to install correctly and I am not sure if that has any side effects. When installing devtools via init.R everything works fine with the default apt-packages.
I would naively have done the latter, but the dash deployment docs are using
init.R
. Is this mostly to prevent the entire docker build from crashing if something is wrong with a user installed package or are there other advantages to this approach?The text was updated successfully, but these errors were encountered: