Skip to content

Commit

Permalink
Update Dockerfile entrypoint command
Browse files Browse the repository at this point in the history
The commit modifies the ENTRYPOINT command in the Dockerfile, correcting a typo. The corrected version ensures that the correct class file is called in the Java command line during Docker container initialization, thus preventing runtime errors.
  • Loading branch information
timveil committed Apr 11, 2024
1 parent 94fecd9 commit 34601a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ COPY --from=builder /app/snapshot-dependencies/ ./
COPY --from=builder /app/spring-boot-loader/ ./
COPY --from=builder /app/application/ ./
COPY --from=cockroach /cockroach/ ./
ENTRYPOINT ["java", "org.springframework.boot.loader.JarLauncher"]
ENTRYPOINT ["java", "org.springframework.boot.loader.launch.JarLauncher"]

0 comments on commit 34601a6

Please sign in to comment.