Dockerfile 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # Dockerfile for installing the necessary dependencies for building Hadoop.
  17. # See BUILDING.txt.
  18. FROM ubuntu:focal
  19. WORKDIR /root
  20. SHELL ["/bin/bash", "-o", "pipefail", "-c"]
  21. #####
  22. # Disable suggests/recommends
  23. #####
  24. RUN echo APT::Install-Recommends "0"\; > /etc/apt/apt.conf.d/10disableextras
  25. RUN echo APT::Install-Suggests "0"\; >> /etc/apt/apt.conf.d/10disableextras
  26. ENV DEBIAN_FRONTEND noninteractive
  27. ENV DEBCONF_TERSE true
  28. # hadolint ignore=DL3008
  29. RUN apt-get -q update \
  30. && apt-get -q install -y --no-install-recommends \
  31. ant \
  32. apt-utils \
  33. bats \
  34. build-essential \
  35. bzip2 \
  36. clang \
  37. cmake \
  38. curl \
  39. doxygen \
  40. findbugs \
  41. fuse \
  42. g++ \
  43. gcc \
  44. git \
  45. gnupg-agent \
  46. hugo \
  47. libbcprov-java \
  48. libbz2-dev \
  49. libcurl4-openssl-dev \
  50. libfuse-dev \
  51. libprotobuf-dev \
  52. libprotoc-dev \
  53. libsasl2-dev \
  54. libsnappy-dev \
  55. libssl-dev \
  56. libtool \
  57. libzstd-dev \
  58. locales \
  59. make \
  60. maven \
  61. nodejs \
  62. node-yarn \
  63. npm \
  64. openjdk-11-jdk \
  65. openjdk-8-jdk \
  66. pinentry-curses \
  67. pkg-config \
  68. python \
  69. python2.7 \
  70. python-pkg-resources \
  71. python-setuptools \
  72. rsync \
  73. shellcheck \
  74. software-properties-common \
  75. sudo \
  76. valgrind \
  77. zlib1g-dev \
  78. && apt-get clean \
  79. && rm -rf /var/lib/apt/lists/*
  80. ######
  81. # Set env vars required to build Hadoop
  82. ######
  83. ENV MAVEN_HOME /usr
  84. # JAVA_HOME must be set in Maven >= 3.5.0 (MNG-6003)
  85. ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
  86. ENV FINDBUGS_HOME /usr
  87. #######
  88. # Install Boost 1.72 (1.71 ships with Focal)
  89. #######
  90. # hadolint ignore=DL3003
  91. RUN mkdir -p /opt/boost-library \
  92. && curl -L https://sourceforge.net/projects/boost/files/boost/1.72.0/boost_1_72_0.tar.bz2/download > boost_1_72_0.tar.bz2 \
  93. && mv boost_1_72_0.tar.bz2 /opt/boost-library \
  94. && cd /opt/boost-library \
  95. && tar --bzip2 -xf boost_1_72_0.tar.bz2 \
  96. && cd /opt/boost-library/boost_1_72_0 \
  97. && ./bootstrap.sh --prefix=/usr/ \
  98. && ./b2 --without-python install \
  99. && cd /root \
  100. && rm -rf /opt/boost-library
  101. ####
  102. # Install pip (deprecated from Focal toolchain)
  103. ####
  104. # hadolint ignore=DL3003
  105. RUN mkdir -p /opt/pip \
  106. && curl -L https://bootstrap.pypa.io/2.7/get-pip.py > get-pip.py \
  107. && mv get-pip.py /opt/pip \
  108. && cd /opt/pip \
  109. && python2.7 get-pip.py "pip < 21.0" \
  110. && cd /root \
  111. && rm -rf /opt/pip
  112. ######
  113. # Install Google Protobuf 3.7.1 (3.6.1 ships with Focal)
  114. ######
  115. # hadolint ignore=DL3003
  116. RUN mkdir -p /opt/protobuf-src \
  117. && curl -L -s -S \
  118. https://github.com/protocolbuffers/protobuf/releases/download/v3.7.1/protobuf-java-3.7.1.tar.gz \
  119. -o /opt/protobuf.tar.gz \
  120. && tar xzf /opt/protobuf.tar.gz --strip-components 1 -C /opt/protobuf-src \
  121. && cd /opt/protobuf-src \
  122. && ./configure --prefix=/opt/protobuf \
  123. && make "-j$(nproc)" \
  124. && make install \
  125. && cd /root \
  126. && rm -rf /opt/protobuf-src
  127. ENV PROTOBUF_HOME /opt/protobuf
  128. ENV PATH "${PATH}:/opt/protobuf/bin"
  129. ####
  130. # Install pylint at fixed version (2.0.0 removed python2 support)
  131. # https://github.com/PyCQA/pylint/issues/2294
  132. ####
  133. RUN pip2 install \
  134. astroid==1.6.6 \
  135. isort==4.3.21 \
  136. configparser==4.0.2 \
  137. pylint==1.9.2
  138. ####
  139. # Install dateutil.parser
  140. ####
  141. RUN pip2 install python-dateutil==2.7.3
  142. ####
  143. # Install bower
  144. ####
  145. # hadolint ignore=DL3008
  146. RUN npm install -g bower@1.8.8
  147. ###
  148. # Install hadolint
  149. ####
  150. RUN curl -L -s -S \
  151. https://github.com/hadolint/hadolint/releases/download/v1.11.1/hadolint-Linux-x86_64 \
  152. -o /bin/hadolint \
  153. && chmod a+rx /bin/hadolint \
  154. && shasum -a 512 /bin/hadolint | \
  155. awk '$1!="734e37c1f6619cbbd86b9b249e69c9af8ee1ea87a2b1ff71dccda412e9dac35e63425225a95d71572091a3f0a11e9a04c2fc25d9e91b840530c26af32b9891ca" {exit(1)}'
  156. ######
  157. # Intel ISA-L 2.29.0
  158. ######
  159. # hadolint ignore=DL3003,DL3008
  160. RUN mkdir -p /opt/isa-l-src \
  161. && apt-get -q update \
  162. && apt-get install -y --no-install-recommends automake yasm \
  163. && apt-get clean \
  164. && curl -L -s -S \
  165. https://github.com/intel/isa-l/archive/v2.29.0.tar.gz \
  166. -o /opt/isa-l.tar.gz \
  167. && tar xzf /opt/isa-l.tar.gz --strip-components 1 -C /opt/isa-l-src \
  168. && cd /opt/isa-l-src \
  169. && ./autogen.sh \
  170. && ./configure \
  171. && make "-j$(nproc)" \
  172. && make install \
  173. && cd /root \
  174. && rm -rf /opt/isa-l-src
  175. ###
  176. # Avoid out of memory errors in builds
  177. ###
  178. ENV MAVEN_OPTS -Xms256m -Xmx1536m
  179. # Skip gpg verification when downloading Yetus via yetus-wrapper
  180. ENV HADOOP_SKIP_YETUS_VERIFICATION true
  181. ###
  182. # Everything past this point is either not needed for testing or breaks Yetus.
  183. # So tell Yetus not to read the rest of the file:
  184. # YETUS CUT HERE
  185. ###
  186. # Add a welcome message and environment checks.
  187. COPY hadoop_env_checks.sh /root/hadoop_env_checks.sh
  188. RUN chmod 755 /root/hadoop_env_checks.sh
  189. # hadolint ignore=SC2016
  190. RUN echo '${HOME}/hadoop_env_checks.sh' >> /root/.bashrc