File size: 270 Bytes
7b7ad06
9c3605e
 
 
 
 
 
 
 
7b7ad06
9c3605e
 
1
2
3
4
5
6
7
8
9
10
11
12

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)"]