Skip to content

Commit

Permalink
Version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
johntron committed Feb 19, 2015
1 parent 0dd97a3 commit a85c4fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ MAINTAINER Joao Paulo Dubas "[email protected]"

# install system deps
RUN apt-get -y -qq update \
&& apt-get -y -qq install wget
&& apt-get -y -qq install curl

# install orientdb
ENV ROOT /opt/downloads
ENV ORIENT_URL http://www.orientdb.org/portal/function/portal/download/[email protected]
ENV ORIENT_VERSION orientdb-community-1.7.9
ENV ORIENT_VERSION orientdb-community-2.0.2
ENV ORIENT_URL http://www.orientechnologies.com/[email protected]&file=${ORIENT_VERSION}.tar.gz&os=linux
RUN mkdir ${ROOT} \
&& cd ${ROOT} \
&& wget ${ORIENT_URL}/-/-/-/-/-/${ORIENT_VERSION}.tar.gz/false/false/linux \
&& tar -xzf linux \
&& curl ${ORIENT_URL} > ${ORIENT_VERSION}.tar.gz \
&& tar -xzf ${ORIENT_VERSION}.tar.gz \
&& ln -s ${ROOT}/${ORIENT_VERSION} ${ROOT}/orientdb \
&& ln -s ${ROOT}/orientdb/bin/* /usr/local/bin/ \
&& mkdir /usr/local/log
Expand Down

0 comments on commit a85c4fe

Please sign in to comment.