We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2f5af8 commit b1f3309Copy full SHA for b1f3309
Dockerfile
@@ -0,0 +1,19 @@
1
+FROM andrewosh/binder-base
2
+
3
+MAINTAINER Ben Mabey <[email protected]>
4
5
+USER root
6
7
+RUN apt-get update -y && \
8
+ apt-get install -y postgresql postgresql-contrib && \
9
+ service postgresql start
10
11
+USER main
12
13
+ADD environment.yml /home/main/environment.yml
14
+RUN /home/main/anaconda/bin/conda install nb_conda_kernels && \
15
+ cd /home/main && /home/main/anaconda/bin/conda env create && \
16
+ /bin/bash -c "source /home/main/anaconda/bin/activate provenance-dev && pip install git+https://github.com/bmabey/provenance"
17
18
19
+CMD ["/bin/bash"]
0 commit comments