shiny-for-r-template / Dockerfile
cpsievert's picture
Try building from r-base
df8d236 verified
raw
history blame
217 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]