Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3DE681609EB for ; Tue, 31 Oct 2017 15:05:35 +0100 (CET) Received: (qmail 28009 invoked by uid 500); 31 Oct 2017 14:05:34 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 27998 invoked by uid 99); 31 Oct 2017 14:05:34 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Oct 2017 14:05:34 +0000 From: GitBox To: notifications@accumulo.apache.org Subject: [GitHub] roadmapper commented on a change in pull request #1: ACCUMULO-4706 Initial implementation of Accumulo docker image Message-ID: <150945873376.5818.2945237532979412262.gitbox@gitbox.apache.org> archived-at: Tue, 31 Oct 2017 14:05:35 -0000 roadmapper commented on a change in pull request #1: ACCUMULO-4706 Initial implementation of Accumulo docker image URL: https://github.com/apache/accumulo-docker/pull/1#discussion_r148005389 ########## File path: Dockerfile ########## @@ -0,0 +1,52 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +FROM centos:7 + +RUN yum install -y java-1.8.0-openjdk-devel make gcc-c++ +ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk + +ARG HADOOP_VERSION +ARG HADOOP_USER_NAME +ARG ZOOKEEPER_VERSION + +ENV HADOOP_VERSION ${HADOOP_VERSION:-2.7.3} Review comment: Seems like the Apache mirrors don't have 2.7.3 anymore; might want to change this to 2.7.4. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services