Skip to content

Commit

Permalink
Update the Merlin repos in the CI image build (#558)
Browse files Browse the repository at this point in the history
This avoids needing to rebuild the Merlin base image and the HugeCTR image in order to get changes in the Merlin repos into the CI images.
  • Loading branch information
karlhigley authored Aug 24, 2022
1 parent b959521 commit dc7f070
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ci/dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ RUN pip install 'feast<0.20' faiss-gpu

RUN pip install tox

# Update the Merlin repos (to avoid needed to rebuild underlying images to get updates)
RUN cd /Merlin && git pull origin main
RUN cd /core/ && git pull origin main && pip install . --no-deps
RUN cd /nvtabular/ && git pull origin main && pip install . --no-deps
RUN cd /systems/ && git pull origin main && pip install . --no-deps
RUN cd /models/ && git pull origin main && pip install . --no-deps
RUN cd /transformers4rec/ && git pull origin main && pip install . --no-deps


HEALTHCHECK NONE
CMD ["/bin/bash"]

0 comments on commit dc7f070

Please sign in to comment.