Skip to content

Commit

Permalink
Install git on initializer images
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Velichkevich <[email protected]>
  • Loading branch information
andreyvelich committed Dec 10, 2024
1 parent 8e8243c commit 7c4cb22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/initializer_v2/dataset/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ COPY pkg/initializer_v2 pkg/initializer_v2
# Install the needed packages.
RUN pip install -r requirements.txt

# Git is needed for the Kubeflow Training SDK to download JobSet Python models.
RUN apk update && apk add --no-cache git

# Copy and install the Kubeflow Training SDK for the configs.
COPY sdk_v2 sdk_v2
COPY LICENSE LICENSE
Expand Down
3 changes: 3 additions & 0 deletions cmd/initializer_v2/model/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ COPY pkg/initializer_v2 pkg/initializer_v2
# Install the needed packages.
RUN pip install -r requirements.txt

# Git is needed for the Kubeflow Training SDK to download JobSet Python models.
RUN apk update && apk add --no-cache git

# Copy and install the Kubeflow Training SDK for the configs.
COPY sdk_v2 sdk_v2
COPY LICENSE LICENSE
Expand Down

0 comments on commit 7c4cb22

Please sign in to comment.