Wikki13 commited on
Commit
19f7f3a
·
verified ·
1 Parent(s): abfe329

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -4,12 +4,17 @@ WORKDIR /app
4
 
5
  RUN install2.r --error \
6
  shiny \
7
- BioAge \
8
  dplyr \
9
  ggplot2 \
10
  readr \
11
  ggExtra
12
 
 
 
 
 
 
 
13
  COPY app.R .
14
 
15
  EXPOSE 7860
 
4
 
5
  RUN install2.r --error \
6
  shiny \
 
7
  dplyr \
8
  ggplot2 \
9
  readr \
10
  ggExtra
11
 
12
+ # Install remotes package (if not already installed)
13
+ install.packages("remotes")
14
+
15
+ # Install BioAge from GitHub
16
+ remotes::install_github("dayoonkwon/BioAge")
17
+
18
  COPY app.R .
19
 
20
  EXPOSE 7860