HBASE-25642 Fix or stop warning about already cached block (#3638)
[hbase.git] / dev-support / hbase_docker / Dockerfile
blob58d35af4bcf418079fc235bb2b6e1c0edf36ab1b
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
9 #     http://www.apache.org/licenses/LICENSE-2.0
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.
17 FROM ubuntu:18.04 AS BASE_IMAGE
18 SHELL ["/bin/bash", "-o", "pipefail", "-c"]
20 RUN DEBIAN_FRONTEND=noninteractive apt-get -qq update && \
21   DEBIAN_FRONTEND=noninteractive apt-get -qq install --no-install-recommends -y \
22     ca-certificates=20180409 \
23     curl='7.58.0-*' \
24     git='1:2.17.1-*' \
25     locales='2.27-*' \
26     && \
27     apt-get clean && \
28     rm -rf /var/lib/apt/lists/*
30 RUN locale-gen en_US.UTF-8
31 ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
33 FROM BASE_IMAGE AS MAVEN_DOWNLOAD_IMAGE
34 ENV MAVEN_VERSION='3.6.3'
35 ENV MAVEN_URL "https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz"
36 ENV MAVEN_SHA512 'c35a1803a6e70a126e80b2b3ae33eed961f83ed74d18fcd16909b2d44d7dada3203f1ffe726c17ef8dcca2dcaa9fca676987befeadc9b9f759967a8cb77181c0'
37 SHELL ["/bin/bash", "-o", "pipefail", "-c"]
38 RUN curl --location --fail --silent --show-error --output /tmp/maven.tar.gz "${MAVEN_URL}" && \
39   echo "${MAVEN_SHA512} */tmp/maven.tar.gz" | sha512sum -c -
41 FROM BASE_IMAGE AS OPENJDK8_DOWNLOAD_IMAGE
42 ENV OPENJDK8_URL 'https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u232-b09/OpenJDK8U-jdk_x64_linux_hotspot_8u232b09.tar.gz'
43 ENV OPENJDK8_SHA256 '7b7884f2eb2ba2d47f4c0bf3bb1a2a95b73a3a7734bd47ebf9798483a7bcc423'
44 SHELL ["/bin/bash", "-o", "pipefail", "-c"]
45 RUN curl --location --fail --silent --show-error --output /tmp/adoptopenjdk8.tar.gz "${OPENJDK8_URL}" && \
46   echo "${OPENJDK8_SHA256} */tmp/adoptopenjdk8.tar.gz" | sha256sum -c -
48 FROM BASE_IMAGE
49 SHELL ["/bin/bash", "-o", "pipefail", "-c"]
52 # when updating java or maven versions here, consider also updating
53 # `dev-support/docker/Dockerfile` as well.
56 # hadolint ignore=DL3010
57 COPY --from=MAVEN_DOWNLOAD_IMAGE /tmp/maven.tar.gz /tmp/maven.tar.gz
58 RUN tar xzf /tmp/maven.tar.gz -C /opt && \
59   ln -s "/opt/$(dirname "$(tar -tf /tmp/maven.tar.gz | head -n1)")" /opt/maven && \
60   rm /tmp/maven.tar.gz
62 # hadolint ignore=DL3010
63 COPY --from=OPENJDK8_DOWNLOAD_IMAGE /tmp/adoptopenjdk8.tar.gz /tmp/adoptopenjdk8.tar.gz
64 RUN mkdir -p /usr/lib/jvm && \
65   tar xzf /tmp/adoptopenjdk8.tar.gz -C /usr/lib/jvm && \
66   ln -s "/usr/lib/jvm/$(basename "$(tar -tf /tmp/adoptopenjdk8.tar.gz | head -n1)")" /usr/lib/jvm/java-8-adoptopenjdk && \
67   ln -s /usr/lib/jvm/java-8-adoptopenjdk /usr/lib/jvm/java-8 && \
68   rm /tmp/adoptopenjdk8.tar.gz
70 ENV MAVEN_HOME '/opt/maven'
71 ENV JAVA_HOME '/usr/lib/jvm/java-8'
72 ENV PATH '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
73 ENV PATH "${JAVA_HOME}/bin:${MAVEN_HOME}/bin:${PATH}"
75 # Pull down HBase and build it into /root/hbase-bin.
76 WORKDIR /root
77 RUN git clone https://gitbox.apache.org/repos/asf/hbase.git -b master
78 RUN mvn clean install -DskipTests assembly:single -f ./hbase/pom.xml
79 RUN mkdir -p hbase-bin
80 RUN find /root/hbase/hbase-assembly/target -iname '*.tar.gz' -not -iname '*client*' \
81   | head -n 1 \
82   | xargs -I{} tar xzf {} --strip-components 1 -C /root/hbase-bin
84 # Set HBASE_HOME, add it to the path, and start HBase.
85 ENV HBASE_HOME /root/hbase-bin
86 ENV PATH "/root/hbase-bin/bin:${PATH}"
88 CMD ["/bin/bash", "-c", "start-hbase.sh; hbase shell"]