Skip to content

Instantly share code, notes, and snippets.

@vfrico
Created October 18, 2016 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfrico/9b485e1af470f645c092ebf5a5505457 to your computer and use it in GitHub Desktop.
Save vfrico/9b485e1af470f645c092ebf5a5505457 to your computer and use it in GitHub Desktop.
Dockerfile for vfrico/kge-server
FROM jupyter/scipy-notebook
MAINTAINER Daniel Vila Suero <dvilasuero@gmail.com>
MAINTAINER Víctor Fernández Rico <vfrico@gmail.com>
USER root
# install scikit-kge from github
#RUN git clone https://github.com/vfrico/scikit-kge.git
RUN git clone https://github.com/vfrico/kge-server.git
RUN pip3 install setuptools
RUN pip3 install nose
RUN cd kge-server/ && python3 setup.py install
RUN pip3 install falcon
RUN pip3 install gunicorn
RUN rm -rf kge-server/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment