Spaces:
Build error
Build error
File size: 286 Bytes
971fe13 aa391ff 562be53 52fdbd9 971fe13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
utils \
htmlwidgets
RUN installGithub.r \
davidgohel/ggiraph
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|