Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 819 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 819 Bytes

rpi-server

Repo to house scripts to build a docker container for the Raspberry Pi

As a start, the aim is to build a container that is running:

  • R
  • Shiny Server
  • RStudio Server

The container will run on a Raspberry Pi 3 on my local network.

The dockerfile contains the following steps:

  1. Start with image resin/raspberrypi3-debian:stretch
  2. Install the latest version of R
  3. Install some build dependencies
  4. Build and install cmake from source (this may not be necessary)
  5. Install shiny R package
  6. Install tidyverse R package
  7. Create a shiny user
  8. Install shiny-server (as the shiny user created above)
  9. Make install shiny-server
  10. Shiny-server post-install
  11. Copies a working init.d file and start script
  12. exposes port 3838

Further plans:

  • Remove cmake build
  • Install rstudio-server