You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2017/01/12 17:45:13 UTC

tinkerpop git commit: Integrated the Maven installation script, that is used by Travis, into the Docker build script.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1443 fa2b00585 -> 68ad11149


Integrated the Maven installation script, that is used by Travis, into the Docker build script.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/68ad1114
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/68ad1114
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/68ad1114

Branch: refs/heads/TINKERPOP-1443
Commit: 68ad11149848271898e27a9198a63aceb126500f
Parents: fa2b005
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Thu Jan 12 18:44:47 2017 +0100
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Thu Jan 12 18:44:47 2017 +0100

----------------------------------------------------------------------
 docker/build/Dockerfile.template | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/68ad1114/docker/build/Dockerfile.template
----------------------------------------------------------------------
diff --git a/docker/build/Dockerfile.template b/docker/build/Dockerfile.template
index 8364884..76e9a6b 100644
--- a/docker/build/Dockerfile.template
+++ b/docker/build/Dockerfile.template
@@ -21,3 +21,8 @@ RUN mkdir -p /usr/src/tinkerpop
 RUN curl -s https://bootstrap.pypa.io/ez_setup.py | python
 WORKDIR /usr/src/tinkerpop
 COPY . /usr/src/tinkerpop
+ENV M2_HOME /root/mvn-home
+ENV PATH ${M2_HOME}/bin:${PATH}
+ENV MVN_VERSION 3.3.9
+RUN chmod 744 .travis.install-maven.sh
+RUN ./.travis.install-maven.sh 3.3.9 ${M2_HOME}