Redis – java.lang.IllegalStateException: Previous attempts to find a Docker environment failed. Will not retry. Please see logs and check configuration
I am trying to run my spring boot app junit tests inside docker and then create image of that app. Below is my Dockerfile: FROM adoptopenjdk/openjdk14:alpine-jre as base COPY .mvn/ .mvn COPY mvnw pom.xml ./ RUN ./mvnw -B dependency:resolve-plugins dependency:resolve…