blob: d85c744ff095bff7401fbc801d6f2f9149973d4c [file]
#
# 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.
#
# Image for building Phoenix releases. Based on Ubuntu 18.04.
#
# Copied directly from HBase
#
# Includes:
# * Java 8
FROM ubuntu:22.04
# Install extra needed repos and refresh.
#
# This is all in a single "RUN" command so that if anything changes, "apt update" is run to fetch
# the most current package versions (instead of potentially using old versions cached by docker).
RUN DEBIAN_FRONTEND=noninteractive apt-get -qq -y update \
&& DEBIAN_FRONTEND=noninteractive apt-get -qq -y install --no-install-recommends \
curl='7.81.0-*' \
git='1:2.34.1-*' \
gnupg='2.2.27-*' \
libcurl4-openssl-dev='7.81.0-*' \
libxml2-dev='2.9.13+dfsg-*' \
libxml2-utils='2.9.13+dfsg-*' \
lsof='4.93.2+dfsg-*' \
openjdk-8-jdk='8u*' \
python3='3.10.6-1~22.04.1' \
python2='2.7.18-3' \
python3-pip='22.0.2+dfsg-*' \
subversion='1.14.1-*' \
wget='1.21.2-*' \
patch='2.7.6-*' \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java \
&& update-alternatives --install /usr/bin/python python /usr/bin/python2 1 \
&& pip3 install --no-cache-dir python-dateutil==2.8.2 \
&& pip install --no-cache-dir python-dateutil==2.8.2
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install maven
ENV MAVEN_VERSION=3.8.6
ARG MAVEN_URL="https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz"
ARG MAVEN_SHA512="f790857f3b1f90ae8d16281f902c689e4f136ebe584aba45e4b1fa66c80cba826d3e0e52fdd04ed44b4c66f6d3fe3584a057c26dfcac544a60b301e6d0f91c26"
RUN mkdir -p /opt/maven \
&& curl -fsSL -o /tmp/apache-maven.tar.gz "${MAVEN_URL}" \
&& echo "${MAVEN_SHA512} /tmp/apache-maven.tar.gz" | sha512sum -c - \
&& tar -xzf /tmp/apache-maven.tar.gz -C /opt/maven --strip-components=1 \
&& rm -f /tmp/apache-maven.tar.gz \
&& ln -s /opt/maven/bin/mvn /usr/bin/mvn
# Install Apache Yetus
ENV YETUS_VERSION 0.13.0
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN wget -qO- "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=/yetus/${YETUS_VERSION}/apache-yetus-${YETUS_VERSION}-bin.tar.gz" | \
tar xvz -C /opt
ENV YETUS_HOME /opt/apache-yetus-${YETUS_VERSION}
ARG UID
ARG RM_USER
RUN groupadd phoenix-rm && \
useradd --create-home --shell /bin/bash -p phoenix-rm -u $UID $RM_USER && \
mkdir /home/$RM_USER/.gnupg && \
chown -R $RM_USER:phoenix-rm /home/$RM_USER && \
chmod -R 700 /home/$RM_USER
USER $RM_USER:phoenix-rm
WORKDIR /home/$RM_USER/phoenix-rm/
ENTRYPOINT [ "./do-release.sh" ]