unclemusclez commited on
Commit
ad40be2
·
verified ·
1 Parent(s): 1eec2c9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -44,8 +44,6 @@ USER ${USER}
44
  ENV HOME=/home/${USER} \
45
  PATH=${HOME}/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH} \
46
  APPDIR=${HOME}/app
47
-
48
- COPY groups_merged.txt ${APPDIR}/llama.cpp/.
49
 
50
  WORKDIR ${APPDIR}
51
  COPY --chown=1000 . ${APPDIR}
@@ -71,8 +69,9 @@ RUN python -m pip install "huggingface-hub" "hf-transfer" "gradio[oauth]>=4.28.0
71
  # go build . --verbose \
72
  # go install . --verbose
73
 
74
- RUN git clone https://github.com/ggerganov/llama.cpp
75
 
 
 
76
  WORKDIR ${APPDIR}/llama.cpp
77
  RUN git pull
78
  RUN python -m pip install -r requirements.txt
 
44
  ENV HOME=/home/${USER} \
45
  PATH=${HOME}/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH} \
46
  APPDIR=${HOME}/app
 
 
47
 
48
  WORKDIR ${APPDIR}
49
  COPY --chown=1000 . ${APPDIR}
 
69
  # go build . --verbose \
70
  # go install . --verbose
71
 
 
72
 
73
+ RUN git clone https://github.com/ggerganov/llama.cpp
74
+ COPY groups_merged.txt llama.cpp/.
75
  WORKDIR ${APPDIR}/llama.cpp
76
  RUN git pull
77
  RUN python -m pip install -r requirements.txt