From b17da76325c6b14e1223d6614a04a4162a863307 Mon Sep 17 00:00:00 2001 From: wangjx <1609724385@qq.com> Date: Thu, 24 Jun 2021 23:11:48 +0800 Subject: [PATCH] =?UTF-8?q?nacos=E6=8C=81=E4=B9=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3640d4e4..168f12e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,23 @@ FROM java:8 MAINTAINER king <1609724385@qq.com> VOLUME /tmp -COPY sentinel-dashboard/target/sentinel-dashboard.jar app.jar + +COPY sentinel-core/target/sentinel-core.jar core.jar COPY --from=hengyunabc/arthas:latest /opt/arthas /opt/arthas ENV TimeZone=Asia/Shanghai -ENV active=dev +ENV active=test ENV JAVA_OPTS="-Xmx512M -Xms512M" RUN ln -snf /usr/share/zoneinfo/$TimeZone /etc/localtime && echo $TimeZone > /etc/timezone #EXPOSE 8098 + +COPY sentinel-dashboard/target/sentinel-dashboard.jar app.jar +COPY --from=hengyunabc/arthas:latest /opt/arthas /opt/arthas +#ENV TimeZone=Asia/Shanghai +#ENV active=test +#ENV JAVA_OPTS="-Xmx512M -Xms512M" +#RUN ln -snf /usr/share/zoneinfo/$TimeZone /etc/localtime && echo $TimeZone > /etc/timezone +#EXPOSE 8098 +ENTRYPOINT java $JAVA_OPTS -jar /core.jar --spring.profiles.active=$active + ENTRYPOINT java $JAVA_OPTS -Dserver.port=7777 -Dcsp.sentinel.dashboard.server=$IP:7777 -Dproject .name=sentinel-dashboard -Dsentinel.dashboard.auth.username=telpo -Dsentinel.dashboard.auth.password=telpo#1234 -jar /app.jar --spring.profiles.active=$active