blob: 72a850482a50476faed5a3f83896adee3a64b6bd [file] [log] [blame]
# 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.
ARG UBUNTU_VERSION
FROM ubuntu:${UBUNTU_VERSION}
ARG TARGETARCH
ARG RANGER_BASE_JAVA_VERSION
# Install tzdata, Python, Java, python-requests
RUN apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata vim\
python3 python3-pip openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk bc iputils-ping ssh pdsh xmlstarlet && \
pip3 install apache-ranger && \
pip3 install requests
# Set environment variables
ENV JAVA_HOME /usr/lib/jvm/java-${RANGER_BASE_JAVA_VERSION}-openjdk-${TARGETARCH}
ENV RANGER_DIST /home/ranger/dist
ENV RANGER_SCRIPTS /home/ranger/scripts
ENV RANGER_HOME /opt/ranger
ENV PATH /usr/java/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN update-java-alternatives --set /usr/lib/jvm/java-1.${RANGER_BASE_JAVA_VERSION}.0-openjdk-${TARGETARCH}
# setup groups, users, directories
RUN groupadd ranger && \
useradd -g ranger -ms /bin/bash ranger && \
useradd -g ranger -ms /bin/bash rangeradmin && \
useradd -g ranger -ms /bin/bash rangerusersync && \
useradd -g ranger -ms /bin/bash rangertagsync && \
useradd -g ranger -ms /bin/bash rangerkms && \
groupadd hadoop && \
useradd -g hadoop -ms /bin/bash hdfs && \
useradd -g hadoop -ms /bin/bash yarn && \
useradd -g hadoop -ms /bin/bash hive && \
useradd -g hadoop -ms /bin/bash hbase && \
useradd -g hadoop -ms /bin/bash kafka && \
groupadd knox && \
useradd -g knox -ms /bin/bash knox && \
mkdir -p /home/ranger/dist && \
mkdir -p /home/ranger/scripts && \
chown -R ranger:ranger /home/ranger && \
mkdir -p /opt/ranger && \
chown -R ranger:ranger /opt/ranger
ENTRYPOINT [ "/bin/bash" ]