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.
|
|
|
|
|
2020-03-24 13:05:33 +00:00
|
|
|
FROM ubuntu:xenial
|
2015-04-24 20:05:18 +00:00
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
2018-09-01 23:05:33 +00:00
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
|
2017-10-19 23:33:47 +00:00
|
|
|
#####
|
|
|
|
# Disable suggests/recommends
|
|
|
|
#####
|
|
|
|
RUN echo APT::Install-Recommends "0"\; > /etc/apt/apt.conf.d/10disableextras
|
|
|
|
RUN echo APT::Install-Suggests "0"\; >> /etc/apt/apt.conf.d/10disableextras
|
|
|
|
|
2016-04-28 02:35:51 +00:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ENV DEBCONF_TERSE true
|
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
######
|
2017-10-19 23:33:47 +00:00
|
|
|
# Install common dependencies from packages. Versions here are either
|
|
|
|
# sufficient or irrelevant.
|
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
|
|
|
######
|
2018-09-01 23:05:33 +00:00
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -q install -y --no-install-recommends \
|
|
|
|
apt-utils \
|
|
|
|
build-essential \
|
|
|
|
bzip2 \
|
|
|
|
clang \
|
|
|
|
curl \
|
|
|
|
doxygen \
|
|
|
|
fuse \
|
|
|
|
g++ \
|
|
|
|
gcc \
|
|
|
|
git \
|
|
|
|
gnupg-agent \
|
|
|
|
libbz2-dev \
|
|
|
|
libcurl4-openssl-dev \
|
|
|
|
libfuse-dev \
|
|
|
|
libprotobuf-dev \
|
|
|
|
libprotoc-dev \
|
|
|
|
libsasl2-dev \
|
|
|
|
libsnappy-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool \
|
2018-10-24 04:49:28 +00:00
|
|
|
libzstd1-dev \
|
2018-09-01 23:05:33 +00:00
|
|
|
locales \
|
|
|
|
make \
|
|
|
|
pinentry-curses \
|
|
|
|
pkg-config \
|
|
|
|
python \
|
|
|
|
python2.7 \
|
|
|
|
python-pip \
|
|
|
|
python-pkg-resources \
|
|
|
|
python-setuptools \
|
|
|
|
python-wheel \
|
|
|
|
rsync \
|
|
|
|
software-properties-common \
|
2020-03-24 13:05:33 +00:00
|
|
|
snappy \
|
2018-09-01 23:05:33 +00:00
|
|
|
sudo \
|
|
|
|
valgrind \
|
|
|
|
zlib1g-dev \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2015-04-24 20:05:18 +00:00
|
|
|
|
|
|
|
|
2017-10-19 23:33:47 +00:00
|
|
|
#######
|
2018-09-01 23:05:33 +00:00
|
|
|
# OpenJDK 8
|
2017-10-19 23:33:47 +00:00
|
|
|
#######
|
2018-09-01 23:05:33 +00:00
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -q install -y --no-install-recommends openjdk-8-jdk libbcprov-java \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2016-05-17 03:25:40 +00:00
|
|
|
|
2020-03-24 13:05:33 +00:00
|
|
|
|
|
|
|
######
|
|
|
|
# Install cmake 3.1.0 (3.5.1 ships with Xenial)
|
|
|
|
######
|
|
|
|
RUN mkdir -p /opt/cmake \
|
|
|
|
&& curl -L -s -S \
|
|
|
|
https://cmake.org/files/v3.1/cmake-3.1.0-Linux-x86_64.tar.gz \
|
|
|
|
-o /opt/cmake.tar.gz \
|
|
|
|
&& tar xzf /opt/cmake.tar.gz --strip-components 1 -C /opt/cmake
|
|
|
|
ENV CMAKE_HOME /opt/cmake
|
|
|
|
ENV PATH "${PATH}:/opt/cmake/bin"
|
|
|
|
|
2019-10-10 16:06:02 +00:00
|
|
|
######
|
2020-03-24 13:05:33 +00:00
|
|
|
# Install Google Protobuf 3.7.1 (2.6.0 ships with Xenial)
|
2019-10-10 16:06:02 +00:00
|
|
|
######
|
|
|
|
# hadolint ignore=DL3003
|
|
|
|
RUN mkdir -p /opt/protobuf-src \
|
|
|
|
&& curl -L -s -S \
|
|
|
|
https://github.com/protocolbuffers/protobuf/releases/download/v3.7.1/protobuf-java-3.7.1.tar.gz \
|
|
|
|
-o /opt/protobuf.tar.gz \
|
|
|
|
&& tar xzf /opt/protobuf.tar.gz --strip-components 1 -C /opt/protobuf-src \
|
|
|
|
&& cd /opt/protobuf-src \
|
|
|
|
&& ./configure --prefix=/opt/protobuf \
|
|
|
|
&& make install \
|
|
|
|
&& cd /root \
|
|
|
|
&& rm -rf /opt/protobuf-src
|
|
|
|
ENV PROTOBUF_HOME /opt/protobuf
|
|
|
|
ENV PATH "${PATH}:/opt/protobuf/bin"
|
|
|
|
|
2017-10-19 23:33:47 +00:00
|
|
|
######
|
2020-03-24 13:05:33 +00:00
|
|
|
# Install Apache Maven 3.3.9 (3.3.9 ships with Xenial)
|
2017-10-19 23:33:47 +00:00
|
|
|
######
|
2018-09-01 23:05:33 +00:00
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -q install -y --no-install-recommends maven \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2017-10-19 23:33:47 +00:00
|
|
|
ENV MAVEN_HOME /usr
|
|
|
|
|
|
|
|
######
|
2020-03-24 13:05:33 +00:00
|
|
|
# Install findbugs 3.0.1 (3.0.1 ships with Xenial)
|
2017-10-25 15:08:22 +00:00
|
|
|
# Ant is needed for findbugs
|
2017-10-19 23:33:47 +00:00
|
|
|
######
|
2018-09-01 23:05:33 +00:00
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -q install -y --no-install-recommends findbugs ant \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2017-10-19 23:33:47 +00:00
|
|
|
ENV FINDBUGS_HOME /usr
|
2015-04-24 20:05:18 +00:00
|
|
|
|
2020-03-24 13:05:33 +00:00
|
|
|
####
|
|
|
|
# Install shellcheck (0.4.6, the latest as of 2017-09-26)
|
|
|
|
####
|
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN add-apt-repository -y ppa:hvr/ghc \
|
|
|
|
&& apt-get -q update \
|
|
|
|
&& apt-get -q install -y --no-install-recommends shellcheck ghc-8.0.2 \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install bats (0.4.0, the latest as of 2017-09-26, ships with Xenial)
|
|
|
|
####
|
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN apt-get -q update \
|
|
|
|
&& apt-get -q install -y --no-install-recommends bats \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2016-04-28 02:35:51 +00:00
|
|
|
####
|
2018-07-19 00:09:43 +00:00
|
|
|
# Install pylint at fixed version (2.0.0 removed python2 support)
|
|
|
|
# https://github.com/PyCQA/pylint/issues/2294
|
2016-04-28 02:35:51 +00:00
|
|
|
####
|
2020-04-04 07:52:04 +00:00
|
|
|
RUN pip2 install \
|
|
|
|
configparser==4.0.2 \
|
|
|
|
pylint==1.9.2
|
2015-04-24 20:05:18 +00:00
|
|
|
|
2016-06-14 23:03:20 +00:00
|
|
|
####
|
|
|
|
# Install dateutil.parser
|
|
|
|
####
|
2018-09-01 23:05:33 +00:00
|
|
|
RUN pip2 install python-dateutil==2.7.3
|
2016-06-14 23:03:20 +00:00
|
|
|
|
2015-11-12 18:17:41 +00:00
|
|
|
###
|
2019-12-23 01:30:26 +00:00
|
|
|
# Install node.js 8.17.0 for web UI framework (4.2.6 ships with Xenial)
|
2016-03-21 21:03:13 +00:00
|
|
|
###
|
2019-12-23 01:30:26 +00:00
|
|
|
RUN curl -L -s -S https://deb.nodesource.com/setup_8.x | bash - \
|
|
|
|
&& apt-get install -y --no-install-recommends nodejs=8.17.0-1nodesource1 \
|
2018-09-01 23:05:33 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2019-12-23 01:30:26 +00:00
|
|
|
&& npm install -g bower@1.8.8
|
|
|
|
|
|
|
|
###
|
|
|
|
## Install Yarn 1.12.1 for web UI framework
|
|
|
|
####
|
|
|
|
RUN curl -s -S https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
|
|
|
&& echo 'deb https://dl.yarnpkg.com/debian/ stable main' > /etc/apt/sources.list.d/yarn.list \
|
|
|
|
&& apt-get -q update \
|
2019-12-23 05:08:14 +00:00
|
|
|
&& apt-get install -y --no-install-recommends yarn=1.21.1-1 \
|
2019-12-23 01:30:26 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-09-01 23:05:33 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Install hadolint
|
|
|
|
####
|
|
|
|
RUN curl -L -s -S \
|
|
|
|
https://github.com/hadolint/hadolint/releases/download/v1.11.1/hadolint-Linux-x86_64 \
|
|
|
|
-o /bin/hadolint \
|
|
|
|
&& chmod a+rx /bin/hadolint \
|
|
|
|
&& shasum -a 512 /bin/hadolint | \
|
|
|
|
awk '$1!="734e37c1f6619cbbd86b9b249e69c9af8ee1ea87a2b1ff71dccda412e9dac35e63425225a95d71572091a3f0a11e9a04c2fc25d9e91b840530c26af32b9891ca" {exit(1)}'
|
2016-03-21 21:03:13 +00:00
|
|
|
|
2017-10-19 23:33:47 +00:00
|
|
|
###
|
|
|
|
# Avoid out of memory errors in builds
|
|
|
|
###
|
2018-03-01 20:53:19 +00:00
|
|
|
ENV MAVEN_OPTS -Xms256m -Xmx1536m
|
2017-10-19 23:33:47 +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
|
|
|
|
###
|
|
|
|
|
2017-10-26 17:13:37 +00:00
|
|
|
# Hugo static website generator (for new hadoop site and Ozone docs)
|
2019-10-02 20:51:06 +00:00
|
|
|
RUN curl -L -o hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.58.3/hugo_0.58.3_Linux-64bit.deb \
|
2018-09-01 23:05:33 +00:00
|
|
|
&& dpkg --install hugo.deb \
|
|
|
|
&& rm hugo.deb
|
2017-10-26 17:13:37 +00:00
|
|
|
|
2019-09-12 11:17:54 +00:00
|
|
|
|
2015-04-24 20:05:18 +00:00
|
|
|
# Add a welcome message and environment checks.
|
2018-09-01 23:05:33 +00:00
|
|
|
COPY hadoop_env_checks.sh /root/hadoop_env_checks.sh
|
2015-04-24 20:05:18 +00:00
|
|
|
RUN chmod 755 /root/hadoop_env_checks.sh
|
2018-09-01 23:05:33 +00:00
|
|
|
# hadolint ignore=SC2016
|
|
|
|
RUN echo '${HOME}/hadoop_env_checks.sh' >> /root/.bashrc
|