-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
41 lines (32 loc) · 1020 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
31
32
33
34
35
36
37
38
39
40
41
FROM debian:latest
MAINTAINER Contextual Dynamics Lab <[email protected]>
RUN apt-get update && apt-get install -y eatmydata
RUN eatmydata apt-get install -y wget bzip2 ca-certificates \
git \
swig \
mpich \
pkg-config \
gcc \
wget \
curl \
vim \
nano
RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \
wget --quiet https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86_64.sh -O ~/anaconda.sh && \
/bin/bash ~/anaconda.sh -b -p /opt/conda && \
rm ~/anaconda.sh
ENV PATH /opt/conda/bin:$PATH
RUN conda install pystan -y
RUN pip install --upgrade pip
RUN pip install hypertools
RUN conda update numpy scipy pandas scikit-learn seaborn matplotlib
RUN pip install pytest \
ipytest
ADD PANDAS /PANDAS
ADD coding /coding
ADD docker /docker
ADD testing /testing
ADD tutorial_template /tutorial_template
ADD STAN /STAN
# ENV GOOGLE_APPLICATION_CREDENTIALS=/data/credentials.json
EXPOSE 9999