RomainLLLLLL/IRC
0
1FROM rocker/r-base:latest2 3WORKDIR /code4 5RUN install2.r --error \6 shiny \7 dplyr \8 ggplot2 \9 readr \10 ggExtra11 12COPY . .13 14CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]15 1FROM rocker/r-base:latest2 3WORKDIR /code4 5RUN install2.r --error \6 shiny \7 dplyr \8 ggplot2 \9 readr \10 ggExtra11 12COPY . .13 14CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]15