close / Dockerfile
pajuan's picture
Update Dockerfile
590b2b8 verified
raw
history blame
242 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
magrittr \
rstudioapi
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]