pmolchanov commited on
Commit
69e97f9
·
verified ·
1 Parent(s): f491420

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -20,6 +20,13 @@ RUN pip3 install --no-cache-dir --progress-bar off --upgrade gradio
20
  RUN pip3 install --no-cache-dir --progress-bar off --upgrade triton
21
  RUN pip3 install --no-cache-dir --progress-bar off --upgrade spaces
22
 
 
 
 
 
 
 
 
23
  WORKDIR $HOME/app
24
  COPY --chown=user . $HOME/app
25
  RUN echo "Hello from Dockerfile!"
 
20
  RUN pip3 install --no-cache-dir --progress-bar off --upgrade triton
21
  RUN pip3 install --no-cache-dir --progress-bar off --upgrade spaces
22
 
23
+ RUN git lfs install
24
+ RUN git clone https://huggingface.co/nvidia/Hymba-1.5B-Instruct
25
+
26
+ RUN echo "Copied model from HF"
27
+
28
+ RUN dir -s
29
+
30
  WORKDIR $HOME/app
31
  COPY --chown=user . $HOME/app
32
  RUN echo "Hello from Dockerfile!"