DaveM2430 commited on
Commit
888674f
·
verified ·
1 Parent(s): 5db6dfb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -23,11 +23,15 @@ RUN R -e "install.packages(c( \
23
  'arrow', \
24
  'DT', \
25
  'shinyjs', \
26
- 'tidymodels', \
27
- 'xgboost', \
28
  'httr' \
29
  ))"
30
 
 
 
 
 
 
 
31
  RUN mkdir -p /app/www
32
  COPY Butler-Bulldogs-Logo-1990.png /app/www/Butler-Bulldogs-Logo-1990.png
33
  COPY app.R /app/app.R
 
23
  'arrow', \
24
  'DT', \
25
  'shinyjs', \
 
 
26
  'httr' \
27
  ))"
28
 
29
+ RUN R -e "install.packages('remotes')"
30
+ RUN R -e "remotes::install_version('tidymodels', version='1.4.1')"
31
+ RUN R -e "remotes::install_version('parsnip', version='1.3.3')"
32
+ RUN R -e "remotes::install_version('workflows', version='1.3.0')"
33
+ RUN R -e "remotes::install_version('xgboost', version='1.7.11.1')"
34
+
35
  RUN mkdir -p /app/www
36
  COPY Butler-Bulldogs-Logo-1990.png /app/www/Butler-Bulldogs-Logo-1990.png
37
  COPY app.R /app/app.R