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
Back To Top
Search