Skip to content

Commit

Permalink
Update Dockerfile COPY commands to adjust context path
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Jan 7, 2025
1 parent b737f30 commit 87d4ada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/pic-sure-hpds-etl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/pic-sure-hpds/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 87d4ada

Please sign in to comment.