diff options
| author | Alon Levy <alon@pobox.com> | 2015-04-22 02:25:35 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-04-22 02:25:35 +0300 |
| commit | 7174f651a23659b619769c75318b15e25c3b1422 (patch) | |
| tree | a3de133a133ae16faacc8895ae49e51487910ed2 /docker/fedora | |
| parent | 4cdabb5b51065f5130599c513b6ec77368ed89d1 (diff) | |
docker: initial commit
Diffstat (limited to 'docker/fedora')
| -rw-r--r-- | docker/fedora/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker/fedora/Dockerfile b/docker/fedora/Dockerfile new file mode 100644 index 00000000..7428f4fb --- /dev/null +++ b/docker/fedora/Dockerfile @@ -0,0 +1,15 @@ +FROM fedora:21 +MAINTAINER Alon Levy <alon@pobox.com> +RUN yum install -y dnf +# development requirements +RUN dnf install -y wget tar lsof java git iproute make rubygem-sass ant ipython tmux strace +# runtime requirements +RUN dnf install -y python-flask net-tools python-pip python-gevent-websocket python-gevent-websocketio python-gevent-socketio +# some of these have fedora packages. some of thoes are out of date +# python-futures +RUN pip install enum futures flask-socketio +ADD neo4j-community-2.2.1-unix.tar.gz /home/ +RUN sed -i -e's/dbms.security.auth_enabled=true/dbms.security.auth_enabled=false/' /home/neo4j-community-2.2.1/conf/neo4j-server.properties +#RUN cd /root/ && wget http://neo4j.com/artifact.php?name=neo4j-community-2.2.1-unix.tar.gz -Oneo4j.tar.gz +WORKDIR /home/rhizi +ENV NEO4J_ROOT /home/neo4j-community-2.2.1 |
