BioAge-Calculator / Dockerfile
Wikki13's picture
Update Dockerfile
af104f3 verified
raw
history blame contribute delete
306 Bytes
FROM rocker/r-base:latest
WORKDIR /app
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
remotes \
googlesheets4
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)"]