Ifeanyi commited on
Commit
41f0317
·
1 Parent(s): 66f0ed2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -14,13 +14,20 @@ RUN install2.r --error \
14
  reactable \
15
  reactablefmtr \
16
  dplyr
 
 
 
 
 
 
17
 
18
 
19
  # Install development packages from GitHub
20
  RUN installGithub.r \
21
  rstudio/bslib \
22
  rstudio/httpuv \
23
- ekmaloney/openalexR
 
24
 
25
  COPY . .
26
 
 
14
  reactable \
15
  reactablefmtr \
16
  dplyr
17
+
18
+ RUN R -e "install.packages('devtools')"
19
+
20
+ # Install the package from GitHub
21
+ RUN R -e "devtools::install_github('ekmaloney/openalexR')"
22
+
23
 
24
 
25
  # Install development packages from GitHub
26
  RUN installGithub.r \
27
  rstudio/bslib \
28
  rstudio/httpuv \
29
+
30
+
31
 
32
  COPY . .
33