diff --git a/Docker-files/app/multistage/Dockerfile b/Docker-files/app/multistage/Dockerfile index c1b3ec3be..c92f50767 100644 --- a/Docker-files/app/multistage/Dockerfile +++ b/Docker-files/app/multistage/Dockerfile @@ -1,6 +1,6 @@ FROM maven:3.9.9-eclipse-temurin-21-jammy AS BUILD_IMAGE RUN git clone https://github.com/hkhcoder/vprofile-project.git -RUN cd vprofile-project && git checkout docker && mvn install +RUN cd vprofile-project && git checkout docker && RUN MAVEN_OPTS="-Xmx512m" mvn install -DskipTests FROM tomcat:10-jdk21