From c989af68f47f09cb0eeefeb5b22c67f2e781d577 Mon Sep 17 00:00:00 2001 From: liaopeng Date: Tue, 22 Nov 2022 18:56:08 +0800 Subject: [PATCH] [KYUUBI #3831] Update Dockerfile to include LICENSE NOTICE RELEASE files ### _Why are the changes needed?_ Fix dockerfile image missing RELEASE causes connection kyuubi Times: No such file or directory ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #3831 from forLp811/master. Closes #3831 0396688d [liaopeng] Merge remote-tracking branch 'origin/master' 715b903b [forLp811] Update Dockerfile 76129f5d [liaopeng] Fix dockerfile image missing RELEASE causes connection kyuubi Times: No such file or directory Lead-authored-by: liaopeng Co-authored-by: forLp811 <118807263+forLp811@users.noreply.github.com> Signed-off-by: Cheng Pan --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5d8ca2827..588f99b1f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -55,6 +55,7 @@ RUN set -ex && \ mkdir -p ${KYUUBI_HOME} ${KYUUBI_LOG_DIR} ${KYUUBI_PID_DIR} ${KYUUBI_WORK_DIR_ROOT} && \ rm -rf /var/cache/apt/* +COPY LICENSE NOTICE RELEASE ${KYUUBI_HOME}/ COPY bin ${KYUUBI_HOME}/bin COPY jars ${KYUUBI_HOME}/jars COPY beeline-jars ${KYUUBI_HOME}/beeline-jars