7b7ad06
9c3605e
7b7ad06
9c3605e
| |
FROM rocker/r2u:latest
RUN install2.r --error \
shiny bslib glue \
httr arrow dplyr tidyr stringr \
ggplot2 plotly scales \
gt gtExtras magick \
base64enc
COPY . /app/
EXPOSE 7860
CMD ["R", "-e", "shiny::runApp('/app', host='0.0.0.0', port=7860)"]
|