shiny-for-r-template / Dockerfile
gordon-posit's picture
Docker test
cf82be3
raw
history blame
No virus
136 Bytes
FROM rocker/shiny
WORKDIR /code
COPY . .
EXPOSE 7860
CMD ["Rscript", "-e", "shiny::runApp('app.R', port = 7860, host = '0.0.0.0')"]