-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
30 lines (24 loc) · 826 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
26
27
28
29
30
## -*- docker-image-name: "sje30/waverepo" -*-
FROM rocker/verse
MAINTAINER Stephen Eglen <[email protected]>
ENV PROJ /home/rstudio/waverepo
RUN mkdir $PROJ
RUN pwd
RUN git clone https://github.com/sje30/waverepo.git $PROJ
WORKDIR $PROJ/paper
RUN make rpackages
RUN make
RUN mkdir codecheck
RUN date > codecheck/date.txt
RUN uname -a > codecheck/uname.txt
RUN cp figure/CIplot-1.pdf codecheck
RUN cp figure/nelec-durn-fig-1.pdf codecheck
RUN cp figure/wong-ci-fig-1.pdf codecheck
RUN cp figure/Xu-CI-plot-1.pdf codecheck
WORKDIR $PROJ/paper/codecheck
RUN ls > MANIFEST
## Tips taken from Ben Marwick's Dockerfile
## https://github.com/benmarwick/1989-excavation-report-Madjebebe/blob/master/Dockerfile
##
## To rebuild:
## docker build -t sje30/waverepo https://raw.githubusercontent.com/sje30/waverepo/master/Dockerfile