Skip to content

Commit 103178a

Browse files
authored
fixed file path (#86)
1 parent 86f2ba7 commit 103178a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ FROM eclipse-temurin:25-jre-alpine
99
EXPOSE 8080
1010
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
1111
WORKDIR /app/
12-
COPY --from=build /build/target/classes/ /
13-
COPY --from=build /build/target/dependency/ /dependencies/
12+
COPY --from=build /build/target/classes/ /app/
13+
COPY --from=build /build/target/dependency/ /app/dependencies/
1414
COPY /www/ /www/
1515
USER appuser
16-
ENTRYPOINT ["java", "-classpath", "/app:/dependencies/*", "org.example.App"]
16+
ENTRYPOINT ["java", "-classpath", "/app:/app/dependencies/*", "org.example.App"]

0 commit comments

Comments
 (0)