-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDockerfile
62 lines (53 loc) · 1.65 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# EmptyHeaded Docker for Ubuntu 12.04 LTS
FROM ubuntu:14.04
MAINTAINER Christopher Aberger <[email protected]>
# update apt repositories
RUN apt-get update
# install add-apt-repository tool
RUN apt-get -y install software-properties-common
RUN apt-get install python-software-properties -y
# install wget for downloading files
RUN apt-get install -y wget
# Install Java.
RUN \
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
add-apt-repository -y ppa:webupd8team/java && \
apt-get update && \
apt-get install -y oracle-java8-installer && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /var/cache/oracle-jdk8-installer
ENV JAVA_HOME /usr/lib/jvm/java-8-oracle
RUN add-apt-repository ppa:ubuntu-toolchain-r/test && apt-get update && apt-get install -y \
build-essential \
git \
python \
make \
python-dev \
python-pip \
g++-5 \
libtbb-dev \
clang-format-3.4 \
vim \
pkg-config \
screen \
cmake \
libjemalloc-dev
RUN mv /usr/bin/clang-format-3.4 /usr/bin/clang-format
RUN apt-get install -y firefox
#install scala
RUN wget https://dl.bintray.com/sbt/debian/sbt-0.13.7.deb
RUN dpkg -i sbt-0.13.7.deb
RUN apt-get install sbt
RUN sbt #pulls sbt which is timely
#install python add ons
RUN wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh
RUN chmod +x miniconda.sh
RUN ./miniconda.sh -b -p /mc
ENV PATH=/mc/bin:$PATH
RUN /mc/bin/conda install -y cython
RUN /mc/bin/conda install -y pandas
RUN /mc/bin/conda install -y setuptools
ADD . /EmptyHeaded
WORKDIR "/EmptyHeaded/dependencies"
RUN ./install.sh
WORKDIR "/EmptyHeaded"