blob: 36e8f0ff79f12dc56dc13f75a61e0e8d86c58580 [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.
FROM ubuntu:20.04
# Install curl, wget, tzdata, Python, Java
RUN apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get -y install curl wget tzdata \
python python3 python3-pip openjdk-8-jdk bc iputils-ping ssh pdsh
# Set environment variables
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
ENV ATLAS_DIST /home/atlas/dist
ENV ATLAS_HOME /opt/atlas
ENV ATLAS_SCRIPTS /home/atlas/scripts
ENV PATH /usr/java/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# setup groups, users, directories
RUN groupadd atlas && \
useradd -g atlas -ms /bin/bash atlas && \
mkdir -p /home/atlas/dist && \
mkdir -p /home/atlas/scripts && \
chown -R atlas:atlas /home/atlas
ENTRYPOINT [ "/bin/bash" ]