Shiny is "is an R package that makes it easy to build interactive web apps straight from R".
docker build --tag shiny-win .
docker run --rm -it -p 4343:4343 shiny-win
Open http://localhost:4343 in your browser.
Find more example apps at http://shiny.rstudio.com/tutorial/written-tutorial/lesson1/ and change the CMD
in the Dockerfile or in the run statement (no spaces!) to try them out.
docker run --rm -it -p 4343:4343 shiny-win -e "runExample('03_reactivity',port=4343)"