Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 544 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 544 Bytes

Template to build on top of this image:

FROM saagie/shiny4saagie-supercharged

# Install R packages required by your Shiny app
RUN R -e 'install.packages(c("DT", "magrittr"), repos="http://cloud.r-project.org")'

# Copy your Shiny app to /srv/shiny-server/myapp
COPY myapp /srv/shiny-server/myapp

# Launch Shiny Server
CMD ["/usr/bin/shiny-server.sh"]

To use the image you built, push it to your public Dockerhub repo, then pull it from Saagie Or build it in a private repo, directly from Jenkins on the platform

Runs on port 3838