Skip to content

Commit b940af8

Browse files
Fix that Dockerfile did not find the jar
Signed-off-by: Lehmann_Fabian <[email protected]>
1 parent 59afd45 commit b940af8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ RUN apt-get update && apt-get install -y \
1717
libglib2.0-0 \
1818
&& rm -rf /var/lib/apt/lists/*
1919

20-
COPY --from=builder /app/target/cws-k8s-scheduler-*-SNAPSHOT.jar app.jar
20+
COPY --from=builder /app/target/cws-k8s-scheduler-*.jar cws.jar
2121

22-
CMD ["java", "-jar", "app.jar"]
22+
CMD ["java", "-jar", "cws.jar"]

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@
162162
<goal>shade</goal>
163163
</goals>
164164
<configuration>
165+
<finalName>cws</finalName>
165166
<minimizeJar>true</minimizeJar>
166167
<transformers>
167168
<transformer

0 commit comments

Comments
 (0)