Ifeanyi commited on
Commit
ddeccc5
·
1 Parent(s): 5fd4781

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -20,7 +20,13 @@ RUN install2.r --error \
20
  RUN installGithub.r \
21
  rstudio/bslib \
22
  rstudio/httpuv \
23
- kth-library/openalex
 
 
 
 
 
 
24
 
25
  COPY . .
26
 
 
20
  RUN installGithub.r \
21
  rstudio/bslib \
22
  rstudio/httpuv \
23
+
24
+
25
+ # Install the remotes package
26
+ RUN R -e "install.packages('remotes')"
27
+
28
+ # Install the package from GitHub
29
+ RUN R -e "remotes::install_github('kth-library/openalex')"
30
 
31
  COPY . .
32