字典 开启 关闭

master
Qin Dong Ming 2024-08-21 16:10:55 +08:00
parent 3c8bf5100a
commit 4d85957516
2 changed files with 10 additions and 2 deletions

View File

@ -12,7 +12,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo "$TZ" > /etc/timezone
VOLUME ["/home/logs"]
# 拷贝执行 jar 包文件
COPY ./target/cloud-etl.jar /home/app.jar
COPY ./target/cloud-server-etl.jar /home/app.jar
# 构建启动命令
ENTRYPOINT ["java", "-Dfile.encoding=utf-8", "-jar", "/home/app.jar"]

10
pom.xml
View File

@ -22,6 +22,14 @@
<module>cloud-etl-server</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version> <!-- 更新到最新稳定版 -->
</plugin>
</plugins>
</build>
</project>