BioAge-Calculator / Dockerfile
Wikki13's picture
Update Dockerfile
7aa9a58 verified
raw
history blame
286 Bytes
FROM rocker/r-base:latest
WORKDIR /app
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
remotes
RUN R -e "remotes::install_github('dayoonkwon/BioAge')"
COPY app.R .
EXPOSE 7860
CMD ["R", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]