File size: 493 Bytes
bd3bcd6 af5734c bd3bcd6 bbfec44 70a2d19 9271094 af5734c bd3bcd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | FROM rocker/r-base:latest
WORKDIR /code
# Install system dependencies first
RUN apt-get update && apt-get install -y \
libcurl4-openssl-dev \
libssl-dev \
libxml2-dev \
libv8-dev \
libsodium-dev \
libharfbuzz-dev \
libfribidi-dev
# Then install R packages
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
gt \
shinyjs \
shinyauthr \
httr
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|