muryshev commited on
Commit
1ed3257
·
verified ·
1 Parent(s): 01dfda0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -36,11 +36,11 @@ WORKDIR /app
36
  COPY --from=build /build/llama.cpp/build/bin/server /app
37
  COPY --from=build /build/llama.cpp/examples/server/public /app/public
38
  COPY ./run.sh /app/run.sh
39
- WORKDIR /app
40
 
41
- RUN wget -P /models -O mixtral-8x7b-instruct-v0.1.Q2_K.gguf -L https://huggingface.co/TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF/resolve/main/mixtral-8x7b-instruct-v0.1.Q2_K.gguf
 
42
  EXPOSE 7860
43
-
44
  # Make the script executable
45
  RUN chmod +x run.sh
46
 
 
36
  COPY --from=build /build/llama.cpp/build/bin/server /app
37
  COPY --from=build /build/llama.cpp/examples/server/public /app/public
38
  COPY ./run.sh /app/run.sh
 
39
 
40
+ WORKDIR /models
41
+ RUN wget https://huggingface.co/TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF/resolve/main/mixtral-8x7b-instruct-v0.1.Q2_K.gguf -nv -O mixtral-8x7b-instruct-v0.1.Q2_K.gguf
42
  EXPOSE 7860
43
+ WORKDIR /app
44
  # Make the script executable
45
  RUN chmod +x run.sh
46