After a bit of research into [0] and [1], and a bit of experimentation, it seems we can use a partial wild-card expression for these version strings. Let's try this for now. If it works out, we should expand this usage to all the version package numbers, pinning them to their epic:upstream-version components. [0]: http://manpages.ubuntu.com/manpages/xenial/en/man5/deb-version.5.html [1]: http://manpages.ubuntu.com/manpages/xenial/man8/apt-get.8.html Signed-off-by: Sean Busbey <busbey@apache.org> Signed-off-by: Duo Zhang <zhangduo@apache.org>
65 lines
2.4 KiB
Docker
65 lines
2.4 KiB
Docker
#
|
|
# 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 HBase releases. Based on Ubuntu 18.04.
|
|
#
|
|
# Includes:
|
|
# * Java 8
|
|
FROM ubuntu:18.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.58.0-*' \
|
|
git='1:2.17.1-*' \
|
|
gnupg='2.2.4-*' \
|
|
libcurl4-openssl-dev='7.58.0-*' \
|
|
libxml2-dev='2.9.4+dfsg1-*' \
|
|
lsof='4.89+dfsg-*' \
|
|
maven='3.6.0-*' \
|
|
openjdk-8-jdk='8u252-b09-*' \
|
|
python-pip='9.0.1-*' \
|
|
subversion='1.9.7-*' \
|
|
wget='1.19.4-*' \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java \
|
|
&& pip install \
|
|
python-dateutil==2.8.1
|
|
# Install Apache Yetus
|
|
ENV YETUS_VERSION 0.11.1
|
|
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 hbase-rm && \
|
|
useradd --create-home --shell /bin/bash -p hbase-rm -u $UID $RM_USER && \
|
|
mkdir /home/$RM_USER/.gnupg && \
|
|
chown -R $RM_USER:hbase-rm /home/$RM_USER && \
|
|
chmod -R 700 /home/$RM_USER
|
|
|
|
USER $RM_USER:hbase-rm
|
|
WORKDIR /home/$RM_USER/hbase-rm/
|
|
|
|
ENTRYPOINT [ "./do-release.sh" ]
|