Reputation: 1732
When I try to clone and run jHipster spring boot application using ./mvnw
command, it getting an error mvnw: Permission denied
. How can I solve it?
Upvotes: 8
Views: 11045
Reputation: 727
if you use dockerfile, you should add chmod +x mvnw
RUN chmod +x mvnw
Upvotes: 9