reactor:mp 的 -biz 模块,重构成 -server 模块,意义更明确
parent
56363a3d6e
commit
5c432ac134
|
@ -18,7 +18,7 @@
|
|||
</description>
|
||||
<modules>
|
||||
<module>yudao-module-mp-api</module>
|
||||
<module>yudao-module-mp-biz</module>
|
||||
<module>yudao-module-mp-server</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
FROM eclipse-temurin:21-jre
|
||||
|
||||
## 创建目录,并使用它作为工作目录
|
||||
RUN mkdir -p /yudao-module-mp-biz
|
||||
WORKDIR /yudao-module-mp-biz
|
||||
RUN mkdir -p /yudao-module-mp-server
|
||||
WORKDIR /yudao-module-mp-server
|
||||
## 将后端项目的 Jar 文件,复制到镜像中
|
||||
COPY ./target/yudao-module-mp-biz.jar app.jar
|
||||
COPY ./target/yudao-module-mp-server.jar app.jar
|
||||
|
||||
## 设置 TZ 时区
|
||||
## 设置 JAVA_OPTS 环境变量,可通过 docker run -e "JAVA_OPTS=" 进行覆盖
|
|
@ -8,7 +8,7 @@
|
|||
<version>${revision}</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>yudao-module-mp-biz</artifactId>
|
||||
<artifactId>yudao-module-mp-server</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>${project.artifactId}</name>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue