skip to Main Content

Dockerfile : /bin/sh: 1: ./mvnw: not found error

I am building a Docker container using the following Dockerfile and actually the app is running on the created container. FROM eclipse-temurin:17-jdk-jammy as builder RUN addgroup demogroup; adduser --ingroup demogroup --disabled-password demo USER demo WORKDIR /app # copy pom.xml, mvnw…

VIEW QUESTION

Native Image with Spring Boot 3.0.0 logging trouble – Docker

When I start native Image of Spring Boot 3.0.0 spring-boot-starter-web with Docker, it shows strange log messages like this: :: Spring Boot :: (v3.0.0) %PARSER_ERROR[d] %PARSER_ERROR[p] 1 --- [%PARSER_ERROR[t]] %PARSER_ERROR[logger] : %PARSER_ERROR[m]%PARSER_ERROR[n]%PARSER_ERROR[d] %PARSER_ERROR[p] 1 --- [%PARSER_ERROR[t]] %PARSER_ERROR[logger] : %PARSER_ERROR[m]%PARSER_ERROR[n]%PARSER_ERROR[d] %PARSER_ERROR[p]…

VIEW QUESTION

SpringBoot + AWS Cognito configuration, I need some clarification

I'm trying to start a new simple project with SpringBoot using AWS Cognito for authentication/authorization Following some guide on web i found some different configuration, for example: https://www.baeldung.com/spring-security-oauth-cognito https://wilkom2009.hashnode.dev/how-to-secure-spring-boot-rest-api-endpoints-with-amazon-cognito In the Baeldung is used only the spring module spring-security-oauth2-jose while…

VIEW QUESTION
Back To Top
Search