ความคิดเห็น •

  • @AGAGARCIA
    @AGAGARCIA 10 หลายเดือนก่อน

    Excellent video tutorial. Thanks for sharing with us. It is a pleasure to watch your videos because of the clarity, precision of your explanations and knowledge on the subject.

    • @alexgutjahr
      @alexgutjahr 10 หลายเดือนก่อน +1

      Thank you so much for the kind words! 🙏

  • @АлександрБугримов-о1е
    @АлександрБугримов-о1е 11 หลายเดือนก่อน

    Thank you so much for the video! I think I'm going to need it soon

    • @alexgutjahr
      @alexgutjahr 11 หลายเดือนก่อน

      Excellent! Glad to hear that!

  • @LucasKrauseS
    @LucasKrauseS 6 หลายเดือนก่อน

    Cool stuff!
    I've got to your video as I was having issues with the JarLauncher without the .launch. I am using mvn, and here is the code if anyone is interested :)
    FROM eclipse-temurin:21-jre-alpine AS builder
    WORKDIR application
    ARG JAR_FILE=target/*.jar
    COPY ${JAR_FILE} application.jar
    RUN java -Djarmode=layertools -jar application.jar extract
    FROM eclipse-temurin:21-jre-alpine AS final
    RUN addgroup -S spring && adduser -S spring -G spring
    USER spring:spring
    WORKDIR application
    COPY --from=builder application/dependencies/ ./
    COPY --from=builder application/snapshot-dependencies/ ./
    COPY --from=builder application/spring-boot-loader/ ./
    COPY --from=builder application/application/ ./
    EXPOSE 8080
    ENTRYPOINT ["java", "org.springframework.boot.loader.launch.JarLauncher"]

    • @alexgutjahr
      @alexgutjahr 6 หลายเดือนก่อน +1

      Cool, thanks for sharing that!