hello,
is it possible to deploy a java spring boot web app without docker file?
this is my build command-
find / -type d -name “java*” && echo “JAVA_HOME: $JAVA_HOME” && java -version && chmod +x mvnw && ./mvnw clean install
when i try to, i get an error that java home is not set correctly
and i am unable to get the location where java bins are located
thanks in advance