diff --git a/docker/pic-sure-hpds-etl/Dockerfile b/docker/pic-sure-hpds-etl/Dockerfile index 02f0d118..6806ebba 100644 --- a/docker/pic-sure-hpds-etl/Dockerfile +++ b/docker/pic-sure-hpds-etl/Dockerfile @@ -3,7 +3,7 @@ FROM maven:3.9.4-amazoncorretto-21 AS build WORKDIR /app # Copy the entire project into the container -COPY ../../ . +COPY . . # Build the project and skip tests RUN mvn clean install -DskipTests diff --git a/docker/pic-sure-hpds/Dockerfile b/docker/pic-sure-hpds/Dockerfile index f9acff38..bfabc224 100644 --- a/docker/pic-sure-hpds/Dockerfile +++ b/docker/pic-sure-hpds/Dockerfile @@ -3,7 +3,7 @@ FROM maven:3.9.4-amazoncorretto-21 AS build WORKDIR /app # Copy the entire project into the container -COPY ../../ . +COPY . . # Build the project and skip tests RUN mvn clean install -DskipTests