Skip to content

Commit

Permalink
adding dataloader repo to dockerfile (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
jperez999 authored Nov 4, 2022
1 parent 183d8f3 commit 2737d98
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/dockerfile.merlin
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ ARG NVTAB_VER=main
ARG NVTAB_BACKEND_VER=main
ARG SYSTEMS_VER=main
ARG TF4REC_VER=main
ARG DL_VER=main

ENV CORE_VER=${CORE_VER}
ENV MODELS_VER=${MODELS_VER}
Expand Down Expand Up @@ -318,6 +319,7 @@ ARG MODELS_VER
ARG NVTAB_VER
ARG SYSTEMS_VER
ARG TF4REC_VER
ARG DL_VER

# Add Merlin Repo
RUN git clone https://github.com/NVIDIA-Merlin/Merlin/ /Merlin
Expand All @@ -326,6 +328,11 @@ RUN git clone https://github.com/NVIDIA-Merlin/Merlin/ /Merlin
RUN git clone https://github.com/NVIDIA-Merlin/core.git /core/ && \
cd /core/ && git checkout ${CORE_VER} && pip install . --no-deps

# Install Merlin Dataloader
RUN git clone https://github.com/NVIDIA-Merlin/dataloader.git /dataloader/ && \
cd /dataloader/ && git checkout ${DL_VER} && pip install . --no-deps


# Install NVTabular
ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION='python'
RUN git clone https://github.com/NVIDIA-Merlin/NVTabular.git /nvtabular/ && \
Expand Down

0 comments on commit 2737d98

Please sign in to comment.