diff options
| author | Alon Levy <alon@pobox.com> | 2015-04-26 12:52:29 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-04-26 12:52:29 +0300 |
| commit | c1fe4ae32e161e2b9395ccb3b71a35cdb5dbbf47 (patch) | |
| tree | 4dd84345595a70306520edf00d754ef1c59b93bc /res/docker | |
| parent | 73cd5fe97ea740b6f7ac67ccb2dbfbef0c69eb1b (diff) | |
docker/fedora-single: adding missing Dockerfile
Diffstat (limited to 'res/docker')
| -rw-r--r-- | res/docker/fedora-single/Dockerfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/res/docker/fedora-single/Dockerfile b/res/docker/fedora-single/Dockerfile new file mode 100644 index 00000000..9998bcd0 --- /dev/null +++ b/res/docker/fedora-single/Dockerfile @@ -0,0 +1,17 @@ +FROM fedora:21 +MAINTAINER Alon Levy <alon@pobox.com> +RUN yum install -y dnf +# development requirements +RUN dnf install -y wget tar lsof git iproute make rubygem-sass ant ipython tmux strace +RUN dnf install lsof java +# 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 sed -i -e's/#org.neo4j.server.webserver.address=0.0.0.0/org.neo4j.server.webserver.address=0.0.0.0/' /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 |
