Skip to content

Commit 175f7a7

Browse files
author
erict875
committed
fix(pom): update entrypoint path for application jar
- Adjusted the entrypoint path in the Maven configuration to ensure the application jar is correctly referenced. This change resolves issues related to the application startup.
1 parent fcbaf58 commit 175f7a7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

phoenixd-mock/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<containerizingMode>packaged</containerizingMode>
7070
<container>
7171
<entrypoint>
72-
<shell>java -jar /app.jar</shell>
72+
<shell>java -jar /app/app.jar</shell>
7373
</entrypoint>
7474
</container>
7575
</configuration>
@@ -86,4 +86,4 @@
8686
</plugins>
8787
</build>
8888

89-
</project>
89+
</project>

phoenixd-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<containerizingMode>packaged</containerizingMode>
7878
<container>
7979
<entrypoint>
80-
<shell>java -jar /app.jar</shell>
80+
<shell>java -jar /app/app.jar</shell>
8181
</entrypoint>
8282
</container>
8383
</configuration>

0 commit comments

Comments
 (0)