-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (25 loc) · 751 Bytes
/
Dockerfile
File metadata and controls
31 lines (25 loc) · 751 Bytes
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
FROM rocker/verse:latest
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
locales \
libcurl4-openssl-dev \
libssl-dev \
imagemagick \
libmagick++-dev \
gsfonts \
pandoc \
libicu-dev \
libtcl8.6 \
libtk8.6 \
biber \
git-lfs \
pip \
&& rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
COPY global-libraries.R install1.R
#COPY programs/libraries.R install2.R
#COPY text/libraries.R install3.R
RUN cat install?.R > install.R && Rscript install.R
# install the Python requirements
#COPY requirements.txt .
#RUN pip install -r requirements.txt