-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
30 lines (26 loc) · 1.26 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
FROM ubuntu:14.04
MAINTAINER Nolan Nichols <orcid.org/0000-0003-1099-3328>
ENV UPDATED "Sat Aug 16 16:07:27 PDT 2014"
RUN \
apt-get update && \
apt-get -y install wget && \
wget http://repo.continuum.io/miniconda/Miniconda-3.6.0-Linux-x86_64.sh -O /tmp/miniconda.sh -q && \
chmod +x /tmp/miniconda.sh && \
/tmp/miniconda.sh -b -p /usr/local/miniconda
ENV PATH /usr/local/miniconda/bin:$PATH
RUN \
conda update --yes -q conda && \
conda install --yes -q pip flask mock pandas requests nose networkx scipy numpy ipython-notebook dateutil traits pycurl
RUN \
pip -q install celery && \
pip -q install urlgrabber && \
pip -q install https://github.com/twilio/flask-restful/archive/master.zip && \
pip -q install https://github.com/RDFLib/sparqlwrapper/archive/master.zip && \
pip -q install https://github.com/RDFLib/rdflib/archive/master.zip && \
pip -q install https://github.com/RDFLib/rdflib-jsonld/archive/master.zip && \
pip -q install https://github.com/trungdong/prov/archive/rdf.zip && \
pip -q install https://github.com/nipy/nibabel/archive/master.zip && \
pip -q install https://github.com/nipy/nipype/archive/master.zip && \
pip -q install https://github.com/nicholsn/niquery/archive/master.zip
EXPOSE 5000
CMD /usr/local/miniconda/bin/niquery