123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- # 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.
- FROM ubuntu:bionic
- WORKDIR /root
- SHELL ["/bin/bash", "-o", "pipefail", "-c"]
- #####
- # 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
- ENV DEBIAN_FRONTEND noninteractive
- ENV DEBCONF_TERSE true
- ######
- # Install common dependencies from packages. Versions here are either
- # sufficient or irrelevant.
- #
- # WARNING: DO NOT PUT JAVA APPS HERE! Otherwise they will install default
- # Ubuntu Java. See Java section below!
- ######
- # hadolint ignore=DL3008
- RUN apt-get -q update \
- && apt-get -q install -y --no-install-recommends \
- apt-utils \
- bats \
- build-essential \
- bzip2 \
- clang \
- cmake \
- 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 \
- libsnappy-dev \
- libtool \
- libzstd1-dev \
- locales \
- make \
- pinentry-curses \
- pkg-config \
- python3 \
- python3-pip \
- python3-pkg-resources \
- python3-setuptools \
- python3-wheel \
- rsync \
- shellcheck \
- software-properties-common \
- sudo \
- valgrind \
- zlib1g-dev \
- && apt-get clean \
- && rm -rf /var/lib/apt/lists/*
- RUN locale-gen en_US.UTF-8
- ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
- ENV PYTHONIOENCODING=utf-8
- ######
- # Set env vars required to build Hadoop
- ######
- ENV MAVEN_HOME /usr
- # JAVA_HOME must be set in Maven >= 3.5.0 (MNG-6003)
- ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
- #######
- # Install SpotBugs 4.2.2
- #######
- RUN mkdir -p /opt/spotbugs \
- && curl -L -s -S https://github.com/spotbugs/spotbugs/releases/download/4.2.2/spotbugs-4.2.2.tgz \
- -o /opt/spotbugs.tgz \
- && tar xzf /opt/spotbugs.tgz --strip-components 1 -C /opt/spotbugs \
- && chmod +x /opt/spotbugs/bin/*
- ENV SPOTBUGS_HOME /opt/spotbugs
- #######
- # OpenJDK 8
- #######
- # 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/*
- ######
- # Install Google Protobuf 2.5.0 (3.0.0 ships with Bionic)
- ######
- # hadolint ignore=DL3003
- RUN mkdir -p /opt/protobuf-src \
- && curl -L -s -S \
- https://github.com/google/protobuf/releases/download/v2.5.0/protobuf-2.5.0.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"
- ######
- # Install Apache Maven 3.6.0 (3.6.0 ships with Bionic)
- ######
- # 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/*
- ENV MAVEN_HOME /usr
- # JAVA_HOME must be set in Maven >= 3.5.0 (MNG-6003)
- ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
- # Install pylint and python-dateutil
- RUN pip3 install pylint==2.6.0 python-dateutil==2.8.1
- ###
- # 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)}'
- ###
- # Avoid out of memory errors in builds
- ###
- ENV MAVEN_OPTS -Xms256m -Xmx1536m
- # Skip gpg verification when downloading Yetus via yetus-wrapper
- ENV HADOOP_SKIP_YETUS_VERIFICATION true
- ###
- # 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
- ###
- # Hugo static website generator (for new hadoop site and Ozone docs)
- RUN curl -L -o hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.30.2/hugo_0.30.2_Linux-64bit.deb \
- && dpkg --install hugo.deb \
- && rm hugo.deb
- # Add a welcome message and environment checks.
- COPY hadoop_env_checks.sh /root/hadoop_env_checks.sh
- RUN chmod 755 /root/hadoop_env_checks.sh
- # hadolint ignore=SC2016
- RUN echo '${HOME}/hadoop_env_checks.sh' >> /root/.bashrc
|