Github user metatype commented on a diff in the pull request: https://github.com/apache/incubator-geode/pull/275#discussion_r85631878 --- Diff: docker/Dockerfile --- @@ -14,25 +14,34 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM geode/base:0.1 -MAINTAINER Geode Community <dev@geode.incubator.apache.org> +FROM centos:7 +MAINTAINER Apache Geode Community <dev@geode.incubator.apache.org> LABEL Vendor="Apache Geode (incubating)" -LABEL version=unstable +LABEL version=1.0.0 # download JDK 8 -# ENV JAVA_HOME /jdk1.8.0_51 +ENV JAVA_HOME /jdk1.8.0_111 -RUN git clone -b develop https://github.com/apache/incubator-geode.git \ +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/8u111-b14/jdk-8u111-linux-x64.tar.gz" \ --- End diff -- What about just doing `yum install java-1.8.0-openjdk` and avoid any legal issues with redistributing the oracle jdk?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---