| # |
| # 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 IMAGE_BASE=centos:7 |
| ARG IMAGE_BASE_WEB=nginx:1.19.6 |
| |
| ###################################################################### |
| # linkis image base |
| ###################################################################### |
| FROM ${IMAGE_BASE} as linkis-base |
| |
| ARG JDK_VERSION=1.8.0-openjdk |
| ARG JDK_BUILD_REVISION=1.8.0.332.b09-1.el7_9 |
| |
| # Update mirrors to use vault.centos.org as CentOS 7 is EOL since 2024-06-30 |
| RUN sed -i \ |
| -e 's/^mirrorlist/#mirrorlist/' \ |
| -e 's/^#baseurl/baseurl/' \ |
| -e 's/mirror\.centos\.org/vault.centos.org/' \ |
| /etc/yum.repos.d/*.repo |
| |
| # if you want to set specific yum repos conf file, you can put its at linkis-dist/docker/CentOS-Base.repo |
| # and exec [COPY apache-linkis-*-bin/docker/CentOS-Epel.repo /etc/yum.repos.d/CentOS-Epel.repo] |
| |
| # TODO: remove install mysql client when schema-init-tools is ready |
| RUN yum install -y \ |
| less vim unzip curl sudo krb5-workstation sssd crontabs net-tools python-pip glibc-common \ |
| java-${JDK_VERSION}-${JDK_BUILD_REVISION} \ |
| java-${JDK_VERSION}-devel-${JDK_BUILD_REVISION} \ |
| mysql \ |
| && yum clean all |
| |
| RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ |
| && localedef -c -f UTF-8 -i en_US en_US.UTF-8 |
| ENV LANG=en_US.UTF-8 LANGUAGE=en_US:zh LC_TIME=en_US.UTF-8 |
| ENV TZ="Asia/Shanghai" |
| |
| |
| |
| ###################################################################### |
| # linkis image for release |
| ###################################################################### |
| FROM linkis-base as linkis |
| |
| ARG LINKIS_VERSION=1.7.0 |
| ARG LINKIS_SYSTEM_USER="hadoop" |
| ARG LINKIS_SYSTEM_UID="9001" |
| |
| ARG LINKIS_HOME=/opt/linkis |
| ARG LINKIS_CONF_DIR=/etc/linkis-conf |
| ARG LINKIS_LOG_DIR=/var/logs/linkis |
| ARG LDH_HOME=/opt/ldh |
| |
| WORKDIR ${LINKIS_HOME} |
| |
| RUN useradd -r -s /bin/bash -u ${LINKIS_SYSTEM_UID} -g root -G wheel ${LINKIS_SYSTEM_USER} |
| RUN sed -i "s#^%wheel.*#%wheel ALL=(ALL) NOPASSWD: ALL#g" /etc/sudoers |
| |
| RUN mkdir -p /opt/tmp \ |
| && mkdir -p ${LINKIS_CONF_DIR} \ |
| && mkdir -p ${LINKIS_LOG_DIR} \ |
| && mkdir -p ${LDH_HOME} |
| |
| ENV JAVA_HOME /etc/alternatives/jre |
| ENV LINKIS_CONF_DIR ${LINKIS_CONF_DIR} |
| ENV LINKIS_CLIENT_CONF_DIR ${LINKIS_CONF_DIR} |
| ENV LINKIS_HOME ${LINKIS_HOME} |
| |
| # can do some pre-operations |
| ADD apache-linkis-${LINKIS_VERSION}-bin /opt/tmp/ |
| |
| RUN mv /opt/tmp/linkis-package/* ${LINKIS_HOME}/ \ |
| && mv /opt/tmp/LICENSE ${LINKIS_HOME}/ \ |
| && mv /opt/tmp/NOTICE ${LINKIS_HOME}/ \ |
| && mv /opt/tmp/README.md ${LINKIS_HOME}/ \ |
| && mv /opt/tmp/README_CN.md ${LINKIS_HOME}/ \ |
| && rm -rf /opt/tmp |
| |
| RUN chmod g+w -R ${LINKIS_HOME} && chown ${LINKIS_SYSTEM_USER}:${LINKIS_SYSTEM_GROUP} -R ${LINKIS_HOME} \ |
| && chmod g+w -R ${LINKIS_CONF_DIR} && chown ${LINKIS_SYSTEM_USER}:${LINKIS_SYSTEM_GROUP} -R ${LINKIS_CONF_DIR} \ |
| && chmod g+w -R ${LINKIS_LOG_DIR} && chown ${LINKIS_SYSTEM_USER}:${LINKIS_SYSTEM_GROUP} -R ${LINKIS_LOG_DIR} \ |
| && chmod g+w -R ${LDH_HOME} && chown ${LINKIS_SYSTEM_USER}:${LINKIS_SYSTEM_GROUP} -R ${LDH_HOME} \ |
| && chmod a+x ${LINKIS_HOME}/bin/* \ |
| && chmod a+x ${LINKIS_HOME}/sbin/* |
| |
| USER ${LINKIS_SYSTEM_USER} |
| |
| ENTRYPOINT ["/bin/bash"] |
| |
| ###################################################################### |
| # linkis web image |
| ###################################################################### |
| FROM ${IMAGE_BASE_WEB} as linkis-web |
| |
| ARG LINKIS_VERSION=1.7.0 |
| ARG LINKIS_HOME=/opt/linkis |
| |
| ENV LINKIS_WEB_ROOT ${LINKIS_HOME}-web |
| |
| RUN mkdir -p ${LINKIS_HOME}-web |
| COPY apache-linkis-web-${LINKIS_VERSION}-dist/dist ${LINKIS_HOME}-web |