From 86da50874dff7d93134b758a8921c780960a337f Mon Sep 17 00:00:00 2001 From: xuwei-fit2cloud Date: Mon, 28 Aug 2023 17:03:25 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=94=B9Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/Dockerfile => Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) rename core/Dockerfile => Dockerfile (62%) diff --git a/core/Dockerfile b/Dockerfile similarity index 62% rename from core/Dockerfile rename to Dockerfile index 83885e4eec..e524a4a4aa 100644 --- a/core/Dockerfile +++ b/Dockerfile @@ -2,13 +2,15 @@ FROM registry.cn-qingdao.aliyuncs.com/dataease/fabric8-java-alpine-openjdk8-jre: ARG IMAGE_TAG -RUN mkdir -p /opt/apps /opt/dataease/data/feature/full /opt/dataease/drivers +RUN mkdir -p /opt/apps /opt/dataease/data/feature/full /opt/dataease/drivers /opt/dataease/plugins/default -ADD mapFiles/* /opt/dataease/data/feature/full/ +ADD core/mapFiles/* /opt/dataease/data/feature/full/ -ADD drivers/* /opt/dataease/drivers/ +ADD core/drivers/* /opt/dataease/drivers/ -ADD backend/target/backend-$IMAGE_TAG.jar /opt/apps +ADD plugins/default/* /opt/dataease/plugins/default/ + +ADD core/backend/target/backend-$IMAGE_TAG.jar /opt/apps ENV JAVA_APP_JAR=/opt/apps/backend-$IMAGE_TAG.jar