-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
25 lines (22 loc) · 993 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM rocker/verse:4.0.5
COPY ./ /tmp/mvMAPIT
RUN R -e "install.packages(c( 'checkmate', \
'CompQuadForm', \
'dplyr', \
'foreach', \
'harmonicmeanp', \
'logging', \
'mvtnorm', \
'Rcpp', \
'RcppAlgos', \
'RcppArmadillo', \
'RcppParallel', \
'RcppProgress', \
'RcppSpdlog', \
'stats', \
'testthat', \
'tidyr', \
'utils'), \
dependencies = TRUE \
);"
RUN R -e "install.packages('/tmp/mvMAPIT/', type = 'source', repos = NULL)"