close / Dockerfile
pajuan's picture
Update Dockerfile
87afb57 verified
raw
history blame contribute delete
249 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='159.65.249.154', port=7860)"]