2015-04-24 20:05:18 +00:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Dockerfile for installing the necessary dependencies for building Hadoop.
|
|
|
|
# See BUILDING.txt.
|
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
|
2015-05-07 18:46:32 +00:00
|
|
|
FROM ubuntu:trusty
|
2015-04-24 20:05:18 +00:00
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
2016-04-28 02:35:51 +00:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ENV DEBCONF_TERSE true
|
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
######
|
|
|
|
# Install common dependencies from packages
|
2016-05-17 03:25:40 +00:00
|
|
|
#
|
|
|
|
# WARNING: DO NOT PUT JAVA APPS HERE! Otherwise they will install default
|
|
|
|
# Ubuntu Java. See Java section below!
|
2015-11-12 18:17:41 +00:00
|
|
|
######
|
2016-04-28 02:35:51 +00:00
|
|
|
RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
|
2016-03-04 23:42:04 +00:00
|
|
|
build-essential \
|
|
|
|
bzip2 \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
doxygen \
|
|
|
|
fuse \
|
|
|
|
g++ \
|
|
|
|
gcc \
|
|
|
|
git \
|
|
|
|
gnupg-agent \
|
|
|
|
make \
|
|
|
|
libbz2-dev \
|
2015-04-24 20:05:18 +00:00
|
|
|
libcurl4-openssl-dev \
|
2016-03-04 23:42:04 +00:00
|
|
|
libfuse-dev \
|
|
|
|
libprotobuf-dev \
|
|
|
|
libprotoc-dev \
|
|
|
|
libsnappy-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool \
|
|
|
|
pinentry-curses \
|
|
|
|
pkg-config \
|
|
|
|
protobuf-compiler \
|
|
|
|
protobuf-c-compiler \
|
|
|
|
python \
|
|
|
|
python2.7 \
|
2017-04-14 23:56:16 +00:00
|
|
|
python2.7-dev \
|
2016-04-28 02:35:51 +00:00
|
|
|
python-pip \
|
2016-06-23 06:11:58 +00:00
|
|
|
rsync \
|
2016-03-04 23:42:04 +00:00
|
|
|
snappy \
|
|
|
|
zlib1g-dev
|
2015-04-24 20:05:18 +00:00
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
#######
|
|
|
|
# Oracle Java
|
|
|
|
#######
|
2015-04-24 20:05:18 +00:00
|
|
|
|
2016-04-28 02:35:51 +00:00
|
|
|
RUN echo "dot_style = mega" > "/root/.wgetrc"
|
|
|
|
RUN echo "quiet = on" >> "/root/.wgetrc"
|
|
|
|
|
|
|
|
RUN apt-get -q install --no-install-recommends -y software-properties-common
|
2015-11-12 18:17:41 +00:00
|
|
|
RUN add-apt-repository -y ppa:webupd8team/java
|
2016-04-28 02:35:51 +00:00
|
|
|
RUN apt-get -q update
|
2015-11-12 18:17:41 +00:00
|
|
|
|
|
|
|
# Auto-accept the Oracle JDK license
|
|
|
|
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections
|
2016-04-28 02:35:51 +00:00
|
|
|
RUN apt-get -q install --no-install-recommends -y oracle-java8-installer
|
2015-11-12 18:17:41 +00:00
|
|
|
|
2016-05-17 03:25:40 +00:00
|
|
|
####
|
|
|
|
# Apps that require Java
|
|
|
|
###
|
2017-04-08 05:23:26 +00:00
|
|
|
RUN apt-get -q update && apt-get -q install --no-install-recommends -y ant
|
2016-05-17 03:25:40 +00:00
|
|
|
|
2017-04-08 05:23:26 +00:00
|
|
|
######
|
|
|
|
# Install Apache Maven
|
|
|
|
######
|
|
|
|
RUN mkdir -p /opt/maven && \
|
|
|
|
curl -L -s -S \
|
|
|
|
http://www-us.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz \
|
|
|
|
-o /opt/maven.tar.gz && \
|
|
|
|
tar xzf /opt/maven.tar.gz --strip-components 1 -C /opt/maven
|
|
|
|
ENV MAVEN_HOME /opt/maven
|
2017-05-01 22:54:01 +00:00
|
|
|
ENV PATH "$PATH:/opt/maven/bin"
|
2016-05-17 03:25:40 +00:00
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
######
|
2015-04-24 20:05:18 +00:00
|
|
|
# Install findbugs
|
2015-11-12 18:17:41 +00:00
|
|
|
######
|
2015-04-24 20:05:18 +00:00
|
|
|
RUN mkdir -p /opt/findbugs && \
|
2016-04-28 02:35:51 +00:00
|
|
|
curl -L -s -S \
|
|
|
|
https://sourceforge.net/projects/findbugs/files/findbugs/3.0.1/findbugs-noUpdateChecks-3.0.1.tar.gz/download \
|
2015-11-12 18:17:41 +00:00
|
|
|
-o /opt/findbugs.tar.gz && \
|
2015-04-24 20:05:18 +00:00
|
|
|
tar xzf /opt/findbugs.tar.gz --strip-components 1 -C /opt/findbugs
|
|
|
|
ENV FINDBUGS_HOME /opt/findbugs
|
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
####
|
2015-04-24 20:05:18 +00:00
|
|
|
# Install shellcheck
|
2015-11-12 18:17:41 +00:00
|
|
|
####
|
2016-04-28 02:35:51 +00:00
|
|
|
RUN apt-get -q install -y cabal-install
|
|
|
|
RUN mkdir /root/.cabal
|
|
|
|
RUN echo "remote-repo: hackage.fpcomplete.com:http://hackage.fpcomplete.com/" >> /root/.cabal/config
|
|
|
|
#RUN echo "remote-repo: hackage.haskell.org:http://hackage.haskell.org/" > /root/.cabal/config
|
|
|
|
RUN echo "remote-repo-cache: /root/.cabal/packages" >> /root/.cabal/config
|
|
|
|
RUN cabal update
|
|
|
|
RUN cabal install shellcheck --global
|
2015-04-24 20:05:18 +00:00
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
####
|
|
|
|
# Install bats
|
|
|
|
####
|
|
|
|
RUN add-apt-repository -y ppa:duggan/bats
|
2016-04-28 02:35:51 +00:00
|
|
|
RUN apt-get -q update
|
|
|
|
RUN apt-get -q install --no-install-recommends -y bats
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install pylint
|
|
|
|
####
|
|
|
|
RUN pip install pylint
|
2015-04-24 20:05:18 +00:00
|
|
|
|
2016-06-14 23:03:20 +00:00
|
|
|
####
|
|
|
|
# Install dateutil.parser
|
|
|
|
####
|
|
|
|
RUN pip install python-dateutil
|
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
###
|
2015-04-24 20:05:18 +00:00
|
|
|
# Avoid out of memory errors in builds
|
2015-11-12 18:17:41 +00:00
|
|
|
###
|
2015-04-24 20:05:18 +00:00
|
|
|
ENV MAVEN_OPTS -Xms256m -Xmx512m
|
|
|
|
|
2016-03-21 21:03:13 +00:00
|
|
|
###
|
|
|
|
# Install node js tools for web UI frameowkr
|
|
|
|
###
|
2016-09-06 17:45:59 +00:00
|
|
|
RUN apt-get -y install nodejs && \
|
|
|
|
ln -s /usr/bin/nodejs /usr/bin/node && \
|
|
|
|
apt-get -y install npm && \
|
2016-11-11 18:58:50 +00:00
|
|
|
npm install npm@latest -g && \
|
2016-09-06 17:45:59 +00:00
|
|
|
npm install -g bower && \
|
|
|
|
npm install -g ember-cli
|
2016-03-21 21:03:13 +00:00
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
###
|
|
|
|
# Everything past this point is either not needed for testing or breaks Yetus.
|
|
|
|
# So tell Yetus not to read the rest of the file:
|
|
|
|
# YETUS CUT HERE
|
|
|
|
###
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install Forrest (for Apache Hadoop website)
|
|
|
|
###
|
|
|
|
RUN mkdir -p /usr/local/apache-forrest ; \
|
2016-04-28 02:35:51 +00:00
|
|
|
curl -s -S -O http://archive.apache.org/dist/forrest/0.8/apache-forrest-0.8.tar.gz ; \
|
2015-11-12 18:17:41 +00:00
|
|
|
tar xzf *forrest* --strip-components 1 -C /usr/local/apache-forrest ; \
|
|
|
|
echo 'forrest.home=/usr/local/apache-forrest' > build.properties
|
|
|
|
|
2015-04-24 20:05:18 +00:00
|
|
|
# Add a welcome message and environment checks.
|
|
|
|
ADD hadoop_env_checks.sh /root/hadoop_env_checks.sh
|
|
|
|
RUN chmod 755 /root/hadoop_env_checks.sh
|
|
|
|
RUN echo '~/hadoop_env_checks.sh' >> /root/.bashrc
|
|
|
|
|