blob: 031706f72087c561da62d1b0495c3f376e14a5fd [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:16.04
RUN apt-get -y update \
&& apt-get install -y \
curl \
netcat-openbsd \
python3 \
python3-distutils \
software-properties-common \
supervisor \
unzip \
&& apt-get clean
RUN add-apt-repository ppa:openjdk-r/ppa
RUN apt-get update \
&& apt-get -y install \
openjdk-11-jdk-headless \
&& apt-get clean
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
RUN update-ca-certificates -f
ADD artifacts /heron
WORKDIR /heron
# run heron installer
RUN /heron/heron-install.sh \
&& rm -f /heron/heron-install.sh
RUN ln -s /usr/local/heron/dist/heron-core /heron \
&& mkdir -p /heron/heron-tools \
&& ln -s /usr/local/heron/bin /heron/heron-tools \
&& ln -s /usr/local/heron/conf /heron/heron-tools \
&& ln -s /usr/local/heron/dist /heron/heron-tools \
&& ln -s /usr/local/heron/lib /heron/heron-tools \
&& ln -s /usr/local/heron/release.yaml /heron/heron-tools \
&& ln -s /usr/local/heron/examples /heron \
&& ln -s /usr/local/heron/release.yaml /heron
ENV HERON_HOME /heron/heron-core/
RUN export HERON_HOME
# install zookeeper
ARG ZK_DIST=zookeeper-3.5.8
ADD dist/scripts /opt/heron-docker/scripts
RUN sh /opt/heron-docker/scripts/install-zookeeper.sh $ZK_DIST
ADD dist/conf/zookeeper.conf /opt/zookeeper/conf/zookeeper.conf
ADD dist/conf/sandbox.conf /etc/supervisor/conf.d/