validating project after dependecy download

This commit is contained in:
Maharshi Patel 2021-01-10 10:48:20 -08:00
parent 5eab7b590d
commit aeb9e31447

View file

@ -2,10 +2,10 @@ FROM maven:3.6.3-jdk-8 AS build-env
WORKDIR /app
COPY pom.xml ./
RUN mvn validate
RUN mvn dependency:go-offline
COPY . ./
RUN mvn validate
RUN mvn compile test
RUN mvn package