You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geode.apache.org by jun aoki <ju...@gmail.com> on 2015/09/11 20:38:35 UTC

Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/
-----------------------------------------------------------

(Updated Sept. 11, 2015, 6:38 p.m.)


Review request for geode.


Changes
-------

Applied feedback


Bugs: GEODE-60
    https://issues.apache.org/jira/browse/GEODE-60


Repository: geode


Description
-------

Added Dockerfile for docker to build a container which lets users to build Geode.


Diffs (updated)
-----

  README.md 8ac89a0 
  dev-tools/build/Dockerfile PRE-CREATION 
  dev-tools/build/start-docker.sh PRE-CREATION 

Diff: https://reviews.apache.org/r/35541/diff/


Testing
-------

Tested locally.


Thanks,

jun aoki


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by William Markito <wm...@pivotal.io>.
Here is the Dockerfile with only Java that I've posted on the tickets
comment.  Note that I've also removed unnecessary libs from the JDK and
from the OS.

In fact, this image has already been pushed to DockerHub and can be used
with:  docker pull apachegeode/java8


FROM centos:latest
MAINTAINER William Markito <wi...@gmail.com>

LABEL Vendor="Apache Geode (incubating)"
LABEL version=unstable

# download JDK 8
ENV	JAVA_HOME /jdk1.8.0_51

RUN 	yum install -y wget which tar git \
	&& wget --no-cookies --no-check-certificate --header "Cookie:
gpw_e24=http%3A%2F%2Fwww.oracle.com%2F;
oraclelicense=accept-securebackup-cookie"
"http://download.oracle.com/otn-pub/java/jdk/8u51-b16/jdk-8u51-linux-x64.tar.gz"
\	&& tar xf jdk-8u51-linux-x64.tar.gz \
	&& rm -rf /jdk-8u51-linux-x64.tar.gz \
	&& rm -rf $JAVA_HOME/*src.zip \
						$JAVA_HOME/lib/missioncontrol \
						$JAVA_HOME/lib/visualvm \
						$JAVA_HOME/lib/*javafx* \
						$JAVA_HOME/jre/lib/plugin.jar \
						$JAVA_HOME/jre/lib/ext/jfxrt.jar \
						$JAVA_HOME/jre/bin/javaws \
						$JAVA_HOME/jre/lib/javaws.jar \
						$JAVA_HOME/jre/lib/desktop \
						$JAVA_HOME/jre/plugin \
						$JAVA_HOME/jre/lib/deploy* \
						$JAVA_HOME/jre/lib/*javafx* \
						$JAVA_HOME/jre/lib/*jfx* \
						$JAVA_HOME/jre/lib/amd64/libdecora_sse.so \
						$JAVA_HOME/jre/lib/amd64/libprism_*.so \
						$JAVA_HOME/jre/lib/amd64/libfxplugins.so \
						$JAVA_HOME/jre/lib/amd64/libglass.so \
						$JAVA_HOME/jre/lib/amd64/libgstreamer-lite.so \
						$JAVA_HOME/jre/lib/amd64/libjavafx*.so \
						$JAVA_HOME/jre/lib/amd64/libjfx*.so \
	&& rm -rf /usr/share/locale/* \
	&& yum remove -y perl \
	&& yum clean all

ENV PATH $PATH:$JAVA_HOME/bin

VOLUME ["/data/"]


On Fri, Sep 11, 2015 at 9:58 PM, Nitin Lamba <ni...@ampool.io> wrote:

> Glad it helped!
>
>
> If you combine the two remaining RUNs into one and do similar optimization
> in the .sh file, you may reduce it even further! ;)
>
>
> Best,
>
> Nitin
>
> ________________________________
> From: jun aoki <ja...@apache.org>
> Sent: Friday, September 11, 2015 6:53 PM
> To: Nitin Lamba
> Cc: Dan Smith; geode
> Subject: Re: Review Request 35541: GEODE-60 Geode build environment within
> Docker to enable anybody and on any OS and any environment can build Geode
> as long as there is Docker
>
> This is cool Nitin, I could indeed reduce the image size.
> will reattach the patch. Thank you for leting me know!
>
> Previous
> REPOSITORY                   TAG                 IMAGE ID
> CREATED              VIRTUAL SIZE
> geode/build-jaoki            latest              c8ca6d841cbb        24
> hours ago         977.3 MB
> geode/build                  latest              c60ec778317d        24
> hours ago         977 MB
>
>
> After chaining
> REPOSITORY                   TAG                 IMAGE ID
> CREATED              VIRTUAL SIZE
> geode/build-jaoki            latest              ec41cb387c7b        15
> seconds ago       839.3 MB
> geode/build                  latest              1e870e6486bf        16
> seconds ago       839 MB
>
>
> On Fri, Sep 11, 2015 at 5:30 PM, Nitin Lamba <nitin@ampool.io<mailto:
> nitin@ampool.io>> wrote:
> Hi Jun,
>
> You may also want to consider RUN command chaining within Dockerfile (like
> William did in docker/Dockerfile). It creates relatively smaller images:
> https://labs.ctl.io/optimizing-docker-images/
>
> My $0.02,
> Nitin
>
> ________________________________________
> From: jun aoki <noreply@reviews.apache.org<mailto:
> noreply@reviews.apache.org>> on behalf of jun aoki <jun.aoki.dev@gmail.com
> <ma...@gmail.com>>
> Sent: Friday, September 11, 2015 3:46 PM
> To: geode; Dan Smith; jun aoki
> Subject: Re: Review Request 35541: GEODE-60 Geode build environment within
> Docker to enable anybody and on any OS and any environment can build Geode
> as long as there is Docker
>
> > On Sept. 11, 2015, 6:43 p.m., Dan Smith wrote:
> > > Looks good! One very minor comment - we might want to put this is a
> directory with a different name than "build" The gradle output directories
> are called build, so for example our .gitignore file will exclude
> everything in there. Maybe dev-tools/docker? Otherwise, ship it!
>
> thank you for letting me know, Dan. will change it
>
>
> - jun
>
>
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/35541/#review98660
> -----------------------------------------------------------
>
>
> On Sept. 11, 2015, 6:38 p.m., jun aoki wrote:
> >
> > -----------------------------------------------------------
> > This is an automatically generated e-mail. To reply, visit:
> > https://reviews.apache.org/r/35541/
> > -----------------------------------------------------------
> >
> > (Updated Sept. 11, 2015, 6:38 p.m.)
> >
> >
> > Review request for geode.
> >
> >
> > Bugs: GEODE-60
> >     https://issues.apache.org/jira/browse/GEODE-60
> >
> >
> > Repository: geode
> >
> >
> > Description
> > -------
> >
> > Added Dockerfile for docker to build a container which lets users to
> build Geode.
> >
> >
> > Diffs
> > -----
> >
> >   README.md 8ac89a0
> >   dev-tools/build/Dockerfile PRE-CREATION
> >   dev-tools/build/start-docker.sh PRE-CREATION
> >
> > Diff: https://reviews.apache.org/r/35541/diff/
> >
> >
> > Testing
> > -------
> >
> > Tested locally.
> >
> >
> > Thanks,
> >
> > jun aoki
> >
> >
>
>
>
> --
> -jun
>



-- 

William Markito Oliveira
Enterprise Architect
-- For questions about Apache Geode, please write to
*dev@geode.incubator.apache.org
<de...@geode.incubator.apache.org>*

Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by Nitin Lamba <ni...@ampool.io>.
Glad it helped!


If you combine the two remaining RUNs into one and do similar optimization in the .sh file, you may reduce it even further! ;)


Best,

Nitin

________________________________
From: jun aoki <ja...@apache.org>
Sent: Friday, September 11, 2015 6:53 PM
To: Nitin Lamba
Cc: Dan Smith; geode
Subject: Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

This is cool Nitin, I could indeed reduce the image size.
will reattach the patch. Thank you for leting me know!

Previous
REPOSITORY                   TAG                 IMAGE ID            CREATED              VIRTUAL SIZE
geode/build-jaoki            latest              c8ca6d841cbb        24 hours ago         977.3 MB
geode/build                  latest              c60ec778317d        24 hours ago         977 MB


After chaining
REPOSITORY                   TAG                 IMAGE ID            CREATED              VIRTUAL SIZE
geode/build-jaoki            latest              ec41cb387c7b        15 seconds ago       839.3 MB
geode/build                  latest              1e870e6486bf        16 seconds ago       839 MB


On Fri, Sep 11, 2015 at 5:30 PM, Nitin Lamba <ni...@ampool.io>> wrote:
Hi Jun,

You may also want to consider RUN command chaining within Dockerfile (like William did in docker/Dockerfile). It creates relatively smaller images:
https://labs.ctl.io/optimizing-docker-images/

My $0.02,
Nitin

________________________________________
From: jun aoki <no...@reviews.apache.org>> on behalf of jun aoki <ju...@gmail.com>>
Sent: Friday, September 11, 2015 3:46 PM
To: geode; Dan Smith; jun aoki
Subject: Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

> On Sept. 11, 2015, 6:43 p.m., Dan Smith wrote:
> > Looks good! One very minor comment - we might want to put this is a directory with a different name than "build" The gradle output directories are called build, so for example our .gitignore file will exclude everything in there. Maybe dev-tools/docker? Otherwise, ship it!

thank you for letting me know, Dan. will change it


- jun


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/#review98660
-----------------------------------------------------------


On Sept. 11, 2015, 6:38 p.m., jun aoki wrote:
>
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/35541/
> -----------------------------------------------------------
>
> (Updated Sept. 11, 2015, 6:38 p.m.)
>
>
> Review request for geode.
>
>
> Bugs: GEODE-60
>     https://issues.apache.org/jira/browse/GEODE-60
>
>
> Repository: geode
>
>
> Description
> -------
>
> Added Dockerfile for docker to build a container which lets users to build Geode.
>
>
> Diffs
> -----
>
>   README.md 8ac89a0
>   dev-tools/build/Dockerfile PRE-CREATION
>   dev-tools/build/start-docker.sh PRE-CREATION
>
> Diff: https://reviews.apache.org/r/35541/diff/
>
>
> Testing
> -------
>
> Tested locally.
>
>
> Thanks,
>
> jun aoki
>
>



--
-jun

Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ja...@apache.org>.
This is cool Nitin, I could indeed reduce the image size.
will reattach the patch. Thank you for leting me know!

Previous
REPOSITORY                   TAG                 IMAGE ID
 CREATED              VIRTUAL SIZE
geode/build-jaoki            latest              c8ca6d841cbb        24
hours ago         977.3 MB
geode/build                  latest              c60ec778317d        24
hours ago         977 MB


After chaining
REPOSITORY                   TAG                 IMAGE ID
 CREATED              VIRTUAL SIZE
geode/build-jaoki            latest              ec41cb387c7b        15
seconds ago       839.3 MB
geode/build                  latest              1e870e6486bf        16
seconds ago       839 MB


On Fri, Sep 11, 2015 at 5:30 PM, Nitin Lamba <ni...@ampool.io> wrote:

> Hi Jun,
>
> You may also want to consider RUN command chaining within Dockerfile (like
> William did in docker/Dockerfile). It creates relatively smaller images:
> https://labs.ctl.io/optimizing-docker-images/
>
> My $0.02,
> Nitin
>
> ________________________________________
> From: jun aoki <no...@reviews.apache.org> on behalf of jun aoki <
> jun.aoki.dev@gmail.com>
> Sent: Friday, September 11, 2015 3:46 PM
> To: geode; Dan Smith; jun aoki
> Subject: Re: Review Request 35541: GEODE-60 Geode build environment within
> Docker to enable anybody and on any OS and any environment can build Geode
> as long as there is Docker
>
> > On Sept. 11, 2015, 6:43 p.m., Dan Smith wrote:
> > > Looks good! One very minor comment - we might want to put this is a
> directory with a different name than "build" The gradle output directories
> are called build, so for example our .gitignore file will exclude
> everything in there. Maybe dev-tools/docker? Otherwise, ship it!
>
> thank you for letting me know, Dan. will change it
>
>
> - jun
>
>
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/35541/#review98660
> -----------------------------------------------------------
>
>
> On Sept. 11, 2015, 6:38 p.m., jun aoki wrote:
> >
> > -----------------------------------------------------------
> > This is an automatically generated e-mail. To reply, visit:
> > https://reviews.apache.org/r/35541/
> > -----------------------------------------------------------
> >
> > (Updated Sept. 11, 2015, 6:38 p.m.)
> >
> >
> > Review request for geode.
> >
> >
> > Bugs: GEODE-60
> >     https://issues.apache.org/jira/browse/GEODE-60
> >
> >
> > Repository: geode
> >
> >
> > Description
> > -------
> >
> > Added Dockerfile for docker to build a container which lets users to
> build Geode.
> >
> >
> > Diffs
> > -----
> >
> >   README.md 8ac89a0
> >   dev-tools/build/Dockerfile PRE-CREATION
> >   dev-tools/build/start-docker.sh PRE-CREATION
> >
> > Diff: https://reviews.apache.org/r/35541/diff/
> >
> >
> > Testing
> > -------
> >
> > Tested locally.
> >
> >
> > Thanks,
> >
> > jun aoki
> >
> >
>



-- 
-jun

Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by Nitin Lamba <ni...@ampool.io>.
Hi Jun,

You may also want to consider RUN command chaining within Dockerfile (like William did in docker/Dockerfile). It creates relatively smaller images:
https://labs.ctl.io/optimizing-docker-images/

My $0.02,
Nitin

________________________________________
From: jun aoki <no...@reviews.apache.org> on behalf of jun aoki <ju...@gmail.com>
Sent: Friday, September 11, 2015 3:46 PM
To: geode; Dan Smith; jun aoki
Subject: Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

> On Sept. 11, 2015, 6:43 p.m., Dan Smith wrote:
> > Looks good! One very minor comment - we might want to put this is a directory with a different name than "build" The gradle output directories are called build, so for example our .gitignore file will exclude everything in there. Maybe dev-tools/docker? Otherwise, ship it!

thank you for letting me know, Dan. will change it


- jun


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/#review98660
-----------------------------------------------------------


On Sept. 11, 2015, 6:38 p.m., jun aoki wrote:
>
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/35541/
> -----------------------------------------------------------
>
> (Updated Sept. 11, 2015, 6:38 p.m.)
>
>
> Review request for geode.
>
>
> Bugs: GEODE-60
>     https://issues.apache.org/jira/browse/GEODE-60
>
>
> Repository: geode
>
>
> Description
> -------
>
> Added Dockerfile for docker to build a container which lets users to build Geode.
>
>
> Diffs
> -----
>
>   README.md 8ac89a0
>   dev-tools/build/Dockerfile PRE-CREATION
>   dev-tools/build/start-docker.sh PRE-CREATION
>
> Diff: https://reviews.apache.org/r/35541/diff/
>
>
> Testing
> -------
>
> Tested locally.
>
>
> Thanks,
>
> jun aoki
>
>

Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ju...@gmail.com>.

> On Sept. 11, 2015, 6:43 p.m., Dan Smith wrote:
> > Looks good! One very minor comment - we might want to put this is a directory with a different name than "build" The gradle output directories are called build, so for example our .gitignore file will exclude everything in there. Maybe dev-tools/docker? Otherwise, ship it!

thank you for letting me know, Dan. will change it


- jun


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/#review98660
-----------------------------------------------------------


On Sept. 11, 2015, 6:38 p.m., jun aoki wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/35541/
> -----------------------------------------------------------
> 
> (Updated Sept. 11, 2015, 6:38 p.m.)
> 
> 
> Review request for geode.
> 
> 
> Bugs: GEODE-60
>     https://issues.apache.org/jira/browse/GEODE-60
> 
> 
> Repository: geode
> 
> 
> Description
> -------
> 
> Added Dockerfile for docker to build a container which lets users to build Geode.
> 
> 
> Diffs
> -----
> 
>   README.md 8ac89a0 
>   dev-tools/build/Dockerfile PRE-CREATION 
>   dev-tools/build/start-docker.sh PRE-CREATION 
> 
> Diff: https://reviews.apache.org/r/35541/diff/
> 
> 
> Testing
> -------
> 
> Tested locally.
> 
> 
> Thanks,
> 
> jun aoki
> 
>


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by Dan Smith <ds...@pivotal.io>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/#review98660
-----------------------------------------------------------

Ship it!


Looks good! One very minor comment - we might want to put this is a directory with a different name than "build" The gradle output directories are called build, so for example our .gitignore file will exclude everything in there. Maybe dev-tools/docker? Otherwise, ship it!

- Dan Smith


On Sept. 11, 2015, 6:38 p.m., jun aoki wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/35541/
> -----------------------------------------------------------
> 
> (Updated Sept. 11, 2015, 6:38 p.m.)
> 
> 
> Review request for geode.
> 
> 
> Bugs: GEODE-60
>     https://issues.apache.org/jira/browse/GEODE-60
> 
> 
> Repository: geode
> 
> 
> Description
> -------
> 
> Added Dockerfile for docker to build a container which lets users to build Geode.
> 
> 
> Diffs
> -----
> 
>   README.md 8ac89a0 
>   dev-tools/build/Dockerfile PRE-CREATION 
>   dev-tools/build/start-docker.sh PRE-CREATION 
> 
> Diff: https://reviews.apache.org/r/35541/diff/
> 
> 
> Testing
> -------
> 
> Tested locally.
> 
> 
> Thanks,
> 
> jun aoki
> 
>


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ju...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/
-----------------------------------------------------------

(Updated Oct. 3, 2015, 2:19 a.m.)


Review request for geode.


Bugs: GEODE-60
    https://issues.apache.org/jira/browse/GEODE-60


Repository: geode


Description
-------

Added Dockerfile for docker to build a container which lets users to build Geode.


Diffs (updated)
-----

  README.md 8ac89a0 
  dev-tools/docker/base/Dockerfile PRE-CREATION 
  dev-tools/docker/base/build-base-docker.sh PRE-CREATION 
  dev-tools/docker/compile/Dockerfile PRE-CREATION 
  dev-tools/docker/compile/start-compile-docker.sh PRE-CREATION 
  docker/Dockerfile ecdd712 
  docker/README.md 4692940 
  docker/build-runtime-docker.sh PRE-CREATION 

Diff: https://reviews.apache.org/r/35541/diff/


Testing
-------

Tested locally.


Thanks,

jun aoki


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ju...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/
-----------------------------------------------------------

(Updated Oct. 2, 2015, 9:28 p.m.)


Review request for geode.


Bugs: GEODE-60
    https://issues.apache.org/jira/browse/GEODE-60


Repository: geode


Description
-------

Added Dockerfile for docker to build a container which lets users to build Geode.


Diffs (updated)
-----

  README.md 8ac89a0 
  dev-tools/docker/base/Dockerfile PRE-CREATION 
  dev-tools/docker/base/build-base-docker.sh PRE-CREATION 
  dev-tools/docker/compile/Dockerfile PRE-CREATION 
  dev-tools/docker/compile/start-compile-docker.sh PRE-CREATION 
  docker/Dockerfile ecdd712 
  docker/README.md 4692940 
  docker/build-runtime-docker.sh PRE-CREATION 

Diff: https://reviews.apache.org/r/35541/diff/


Testing
-------

Tested locally.


Thanks,

jun aoki


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ju...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/
-----------------------------------------------------------

(Updated Sept. 18, 2015, 9:10 p.m.)


Review request for geode.


Changes
-------

Updated diff that generates following images
```
REPOSITORY                   TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
geode/compile                0.1-jaoki           208bc5647cf0        8 seconds ago       697.1 MB
geode/compile                0.1                 68e33647bf6d        10 seconds ago      696.8 MB
geode/runtime                0.1                 b06430969447        9 minutes ago       753 MB
geode/base                   0.1                 5140902f1dfa        12 minutes ago      603 MB
```


Bugs: GEODE-60
    https://issues.apache.org/jira/browse/GEODE-60


Repository: geode


Description
-------

Added Dockerfile for docker to build a container which lets users to build Geode.


Diffs (updated)
-----

  README.md 8ac89a0 
  dev-tools/docker/base/Dockerfile PRE-CREATION 
  dev-tools/docker/base/build-base-docker.sh PRE-CREATION 
  dev-tools/docker/compile/Dockerfile PRE-CREATION 
  dev-tools/docker/compile/start-compile-docker.sh PRE-CREATION 
  docker/Dockerfile ecdd712 
  docker/README.md 4692940 
  docker/build-runtime-docker.sh PRE-CREATION 
  gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/FunctionalIndexCreationHelper.java e3f5209 
  gemfire-core/src/main/java/com/gemstone/gemfire/cache/query/internal/index/PartitionedIndex.java d41f706 
  gemfire-core/src/main/java/com/gemstone/gemfire/internal/cache/TXCommitMessage.java 2a597e9 
  gemfire-core/src/main/java/com/gemstone/gemfire/internal/cache/wan/serial/SerialGatewaySenderQueue.java ec8c391 
  gemfire-core/src/main/java/com/gemstone/gemfire/management/internal/beans/CacheServerBridge.java 012b8ec 
  gemfire-core/src/test/java/com/gemstone/gemfire/cache/ClientServerTimeSyncDUnitTest.java 492d9a4 
  gemfire-core/src/test/java/com/gemstone/gemfire/cache/query/internal/index/IndexUseJUnitTest.java 8cb9ded 
  gemfire-core/src/test/java/com/gemstone/gemfire/cache30/CacheTestCase.java 951c985 
  gemfire-core/src/test/java/com/gemstone/gemfire/cache30/RegionTestCase.java 81c8afb 
  gemfire-core/src/test/java/com/gemstone/gemfire/internal/cache/ClientServerTransactionDUnitTest.java 4b65a95 
  gemfire-core/src/test/java/dunit/DistributedTestCase.java c78510a 

Diff: https://reviews.apache.org/r/35541/diff/


Testing
-------

Tested locally.


Thanks,

jun aoki


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ju...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/
-----------------------------------------------------------

(Updated Sept. 12, 2015, 1:54 a.m.)


Review request for geode.


Bugs: GEODE-60
    https://issues.apache.org/jira/browse/GEODE-60


Repository: geode


Description
-------

Added Dockerfile for docker to build a container which lets users to build Geode.


Diffs (updated)
-----

  README.md 8ac89a0 
  dev-tools/docker/Dockerfile PRE-CREATION 
  dev-tools/docker/start-docker.sh PRE-CREATION 

Diff: https://reviews.apache.org/r/35541/diff/


Testing
-------

Tested locally.


Thanks,

jun aoki


Re: Review Request 35541: GEODE-60 Geode build environment within Docker to enable anybody and on any OS and any environment can build Geode as long as there is Docker

Posted by jun aoki <ju...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/35541/
-----------------------------------------------------------

(Updated Sept. 11, 2015, 10:46 p.m.)


Review request for geode.


Bugs: GEODE-60
    https://issues.apache.org/jira/browse/GEODE-60


Repository: geode


Description
-------

Added Dockerfile for docker to build a container which lets users to build Geode.


Diffs (updated)
-----

  README.md 8ac89a0 
  dev-tools/docker/Dockerfile PRE-CREATION 
  dev-tools/docker/start-docker.sh PRE-CREATION 

Diff: https://reviews.apache.org/r/35541/diff/


Testing
-------

Tested locally.


Thanks,

jun aoki