ayymen commited on
Commit
999c1c7
1 Parent(s): 1b718f6

Fix Nemo path

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -27,7 +27,9 @@ RUN --mount=target=/tmp/pre-requirements.txt,source=pre-requirements.txt pip in
27
 
28
  WORKDIR /workspace
29
 
30
- RUN git clone https://github.com/NVIDIA/NeMo nemo && cd nemo
 
 
31
 
32
  RUN pip install --no-cache-dir -e .
33
 
 
27
 
28
  WORKDIR /workspace
29
 
30
+ RUN git clone https://github.com/NVIDIA/NeMo nemo
31
+
32
+ WORKDIR /workspace/nemo
33
 
34
  RUN pip install --no-cache-dir -e .
35