From 87d4ada7f36e7aa65743f57eb9df1523e85cf82f Mon Sep 17 00:00:00 2001 From: GeorgeC Date: Tue, 7 Jan 2025 15:57:07 -0500 Subject: [PATCH] Update Dockerfile COPY commands to adjust context path --- docker/pic-sure-hpds-etl/Dockerfile | 2 +- docker/pic-sure-hpds/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/pic-sure-hpds-etl/Dockerfile b/docker/pic-sure-hpds-etl/Dockerfile index 6806ebba..02f0d118 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 bfabc224..f9acff38 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