HADOOP-11936. Dockerfile references a removed image (aw)

This commit is contained in:
Allen Wittenauer 2015-05-07 11:46:32 -07:00
parent f9427f1760
commit ab5058de8e
4 changed files with 13 additions and 1 deletions

View File

@ -19,10 +19,20 @@
# See BUILDING.txt.
# FROM dockerfile/java:openjdk-7-jdk
FROM dockerfile/java:oracle-java7
# FROM dockerfile/java:oracle-java7
FROM ubuntu:trusty
WORKDIR /root
RUN apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:webupd8team/java
RUN apt-get update
# Auto-accept the Oracle JDK license
RUN echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections
RUN apt-get install -y oracle-java7-installer
# Install dependencies from packages
RUN apt-get update && apt-get install --no-install-recommends -y \
git curl ant make maven \

0
dev-support/docker/hadoop_env_checks.sh Normal file → Executable file
View File

View File

@ -621,6 +621,8 @@ Release 2.8.0 - UNRELEASED
HADOOP-10387. Misspelling of threshold in log4j.properties for tests in
hadoop-common-project. (Brahma Reddy Battula via aajisaka)
HADOOP-11936. Dockerfile references a removed image (aw)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

0
start-build-env.sh Normal file → Executable file
View File