-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
51 lines (45 loc) · 810 Bytes
/
Dockerfile
File metadata and controls
51 lines (45 loc) · 810 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
FROM ubuntu:16.04
RUN apt-get update -y && apt-get install -y \
bc \
bzip2 \
curl \
g++ \
git \
less \
libbz2-dev \
libcurl4-openssl-dev \
liblzma-dev \
libncurses-dev \
libssl-dev \
libtbb-dev \
littler \
make \
man \
openjdk-8-jre \
parallel \
perl \
python-dev \
python-pip \
r-base-dev \
time \
unzip \
vim \
wget \
zlib1g-dev \
libmysqlclient-dev
# installing python libraries
RUN pip install scipy==1.1.0
# download tools
WORKDIR /usr/local/bin
COPY downloads.sh .
RUN . downloads.sh
# set path
ENV PATH=/usr/local/bin/scripts:$PATH
# supporting UTF-8
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
# wrapper
COPY scripts/ .
RUN chmod +x run*.sh
# default command
CMD ["ls","/usr/local/bin/"]