Skip to content

Commit

Permalink
added Dockerfile
Browse files Browse the repository at this point in the history
This fulfills most of the requirements of deepchem#6 The next step would be to publish the built Docker image to DockerHub, but I do not have privileges to publish to the  DockerHub repo
  • Loading branch information
J committed Jul 7, 2017
1 parent fed8be8 commit 1317c8d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM deepchemio/deepchem

RUN conda install flask
RUN git clone https://github.com/deepchem/deepchem-gui.git && \
cd deepchem-gui && \
python setup.py install

EXPOSE 5000

ENTRYPOINT exec deepchem-gui server -H 0.0.0.0 --no-browser

0 comments on commit 1317c8d

Please sign in to comment.