We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b1fea2 commit 1f18888Copy full SHA for 1f18888
Dockerfile
@@ -6,10 +6,12 @@ WORKDIR /app/Location-based-target-authentication
6
7
RUN chmod +x ./gradlew
8
RUN ./gradlew bootJar -x test -x clean --build-cache --parallel
9
+RUN mkdir -p /build/libs
10
+RUN cp build/libs/*.jar /build/libs/
11
12
FROM cloudtype/jre:17
13
WORKDIR /app
-COPY --from=build /app/Location-based-target-authentication/build/libs/*.jar /app/app.jar
14
+COPY --from=build /build/libs/*.jar app.jar
15
16
EXPOSE 8443
-ENTRYPOINT ["java", "-jar", "/app/app.jar"]
17
+ENTRYPOINT ["java", "-jar", "app.jar"]
0 commit comments