You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ww...@apache.org on 2021/06/07 08:05:59 UTC

[incubator-heron] branch 0.20.4-incubating-rc1-arm64 updated: Adding dockerfile for docker image build

This is an automated email from the ASF dual-hosted git repository.

wwong pushed a commit to branch 0.20.4-incubating-rc1-arm64
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/0.20.4-incubating-rc1-arm64 by this push:
     new 817e7ec  Adding dockerfile for docker image build
817e7ec is described below

commit 817e7ec9163bbdafd73d5f628a994cedd546b374
Author: Windham Wong <wi...@stormeye.io>
AuthorDate: Mon Jun 7 08:05:35 2021 +0000

    Adding dockerfile for docker image build
---
 docker/dist/Dockerfile.dist.ubuntu20.04-arm64 | 65 +++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/docker/dist/Dockerfile.dist.ubuntu20.04-arm64 b/docker/dist/Dockerfile.dist.ubuntu20.04-arm64
new file mode 100644
index 0000000..54408de
--- /dev/null
+++ b/docker/dist/Dockerfile.dist.ubuntu20.04-arm64
@@ -0,0 +1,65 @@
+#  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.
+
+#syntax=docker/dockerfile:1.2
+FROM ubuntu:20.04
+
+ARG DEBIAN_FRONTEND=noninteractive
+
+ENV LC_ALL C.UTF-8
+ENV LANG C.UTF-8
+
+RUN apt-get -y update \
+    && apt-get -y install \
+    curl \
+    openjdk-11-jdk-headless \
+    netcat-openbsd \
+    python3 \
+    python3-distutils \
+    supervisor \
+    unzip \
+    && apt-get clean
+
+ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-arm64
+RUN update-ca-certificates -f
+
+# run Heron installer
+RUN --mount=type=bind,source=artifacts,target=/tmp/heron /tmp/heron/heron-install.sh \
+    && rm -f /usr/local/heron/dist/heron-core.tar.gz
+
+WORKDIR /heron
+
+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
+
+RUN --mount=type=bind,source=dist,target=/opt/heron-docker/ 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/