This is an automated email from the ASF dual-hosted git repository. sbawaskar pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git
commit 3b70ee615b585c07fbd177011cfe71ab457cf5bb Author: Swapnil Bawaskar <[email protected]> AuthorDate: Tue Oct 31 00:38:26 2017 +0530 Updating Dockerfile - for release 1.3.0 - removing references to incubating --- docker/Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1917a61..596597b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,21 +18,21 @@ FROM centos:7 MAINTAINER Apache Geode Community <[email protected]> LABEL Vendor="Apache Geode" -LABEL version=1.2.1 +LABEL version=1.3.0 RUN yum install -y wget which tar git java-1.8.0-openjdk-devel \ - && git clone https://github.com/apache/incubator-geode.git \ - && cd incubator-geode \ - && git checkout rel/v1.2.1 \ + && git clone https://github.com/apache/geode.git \ + && cd geode \ + && git checkout rel/v1.3.0 \ && ./gradlew build -Dskip.tests=true -xjavadoc \ - && ls /incubator-geode | grep -v geode-assembly | xargs rm -rf \ + && ls /geode | grep -v geode-assembly | xargs rm -rf \ && rm -rf /root/.gradle/ \ - && rm -rf /incubator-geode/geode-assembly/build/distributions/ \ + && rm -rf /geode/geode-assembly/build/distributions/ \ && rm -rf /usr/share/locale/* \ && yum remove -y perl \ && yum clean all -ENV GEODE_HOME /incubator-geode/geode-assembly/build/install/apache-geode +ENV GEODE_HOME /geode/geode-assembly/build/install/apache-geode ENV PATH $PATH:$GEODE_HOME/bin # Default ports: -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
