Skip to content

Commit

Permalink
Add Git installation to Dockerfiles for ETL and HPDS builds
Browse files Browse the repository at this point in the history
Git is now installed in the Dockerfiles to support potential build steps requiring Git, such as fetching dependencies or code. This ensures consistency and avoids build errors in environments where Git is not pre-installed.
  • Loading branch information
Gcolon021 committed Jan 8, 2025
1 parent 64449a8 commit 295582a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/pic-sure-hpds-etl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM maven:3.9.9-eclipse-temurin-21-alpine AS build

RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY .m2 /root/.m2
Expand Down
2 changes: 2 additions & 0 deletions docker/pic-sure-hpds/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM maven:3.9.9-eclipse-temurin-21-alpine AS build

RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY .m2 /root/.m2
Expand Down

0 comments on commit 295582a

Please sign in to comment.