forked from h2oai/wave
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
23 lines (19 loc) · 916 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
#base rdriver image
FROM r-base:latest
COPY ../ /wave
WORKDIR /wave
RUN apt-get update -q && apt-get -y install libcurl4-openssl-dev \
libxml2-dev \
wget \
curl \
git \
gdebi-core \
r-base-dev \
r-cran-openssl \
r-cran-xml2 \
r-cran-curl \
r-cran-httr \
r-cran-httpuv
# mek me a package, please!
# if this runs fine then the dependencies have been installed and package will be ready in wave directory in docker
RUN make build