-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (20 loc) · 721 Bytes
/
Copy pathDockerfile
File metadata and controls
24 lines (20 loc) · 721 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
FROM fcollman/render-python
MAINTAINER Forrest Collman (forrest.collman@gmail.com)
RUN mkdir -p /usr/local/render-python-apps
WORKDIR /usr/local
RUN conda install jupyter
RUN pip install tifffile
RUN pip install opencv-python
RUN pip install pandas
RUN pip install matplotlib
RUN apt-get install libspatialindex-dev -y
RUN apt-get install nano -y
COPY . /usr/local/render-python-apps
#RUN git clone https://github.com/fcollman/render-python-apps
#WORKDIR render-python-apps
#RUN git pull && git checkout newrender
#RUN python setup.py install
COPY jupyter_notebook_config.py /root/.jupyter/
WORKDIR /usr/local/render-python-apps
RUN python setup.py install
CMD ["jupyter", "notebook", "--no-browser", "--allow-root"]