-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use version radar version 0.2 and configure to be compatible with che…
…ckpoint package
- Loading branch information
1 parent
ad19835
commit afbaa8b
Showing
3 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.libPaths( c("~/Rlibs",.libPaths()) ) | ||
options(repos = c(CRAN = "https://mran.revolutionanalytics.com/snapshot/2019-12-17")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
FROM rocker/shiny-verse | ||
WORKDIR /srv/shiny-server/ | ||
RUN wget https://github.com/open-ams/radar/archive/v0.1.zip | ||
RUN unzip v0.1.zip | ||
RUN mv radar-0.1 radar | ||
RUN rm v0.1.zip | ||
RUN R < /srv/shiny-server/radar/dependencies.R | ||
COPY shiny-server.conf /etc/shiny-server/shiny-server.conf | ||
RUN wget https://github.com/open-ams/radar/archive/v0.2.zip | ||
RUN unzip v0.2.zip | ||
RUN mv radar-0.2 radar | ||
RUN rm v0.2.zip | ||
COPY shiny-server.conf /etc/shiny-server/shiny-server.conf | ||
USER shiny | ||
RUN mkdir /home/shiny/Rlibs | ||
RUN mkdir /home/shiny/.checkpoint | ||
COPY .Rprofile /home/shiny/.Rprofile | ||
RUN R < /srv/shiny-server/radar/dependencies.R |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters