We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59afd45 commit b940af8Copy full SHA for b940af8
Dockerfile
@@ -17,6 +17,6 @@ RUN apt-get update && apt-get install -y \
17
libglib2.0-0 \
18
&& rm -rf /var/lib/apt/lists/*
19
20
-COPY --from=builder /app/target/cws-k8s-scheduler-*-SNAPSHOT.jar app.jar
+COPY --from=builder /app/target/cws-k8s-scheduler-*.jar cws.jar
21
22
-CMD ["java", "-jar", "app.jar"]
+CMD ["java", "-jar", "cws.jar"]
pom.xml
@@ -162,6 +162,7 @@
162
<goal>shade</goal>
163
</goals>
164
<configuration>
165
+ <finalName>cws</finalName>
166
<minimizeJar>true</minimizeJar>
167
<transformers>
168
<transformer
0 commit comments