Ifeanyi commited on
Commit
9c5cc3a
·
1 Parent(s): cd87b80

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -7
Dockerfile CHANGED
@@ -15,19 +15,13 @@ RUN install2.r --error \
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
  && R -e "install.packages('remotes', repos='http://cran.rstudio.com/')" \
30
- && R -e "remotes::install_github('github_username/github_repo')"
31
 
32
 
33
 
 
15
  reactablefmtr \
16
  dplyr
17
 
 
 
 
 
 
 
18
 
19
  # Install development packages from GitHub
20
  RUN installGithub.r \
21
  rstudio/bslib \
22
  rstudio/httpuv \
23
  && R -e "install.packages('remotes', repos='http://cran.rstudio.com/')" \
24
+ && R -e "remotes::install_github('ekmaloney/openalexR')"
25
 
26
 
27