Spaces:
Running
Running
File size: 460 Bytes
142c273 c76a52d 142c273 c76a52d 142c273 95a51a8 142c273 |
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 |
FROM rocker/r-base:latest
# Install system dependencies needed by curl, openssl, httr, etc.
RUN apt-get update && apt-get install -y \
libcurl4-openssl-dev \
libssl-dev \
libxml2-dev \
libssh2-1-dev
WORKDIR /code
# Install R packages
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
plotly \
fields \
akima
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|