ST John commited on
Commit
bf49e12
·
1 Parent(s): 33b116b

download model weights

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -7,7 +7,10 @@ WORKDIR /code
7
  # WORKDIR /code/llama-annotate
8
 
9
  RUN apt-get update
10
- RUN apt-get install -y cmake ccache
 
 
 
11
 
12
  COPY llama-annotate/ .
13
 
 
7
  # WORKDIR /code/llama-annotate
8
 
9
  RUN apt-get update
10
+ RUN apt-get install -y cmake ccache wget
11
+ RUN apt-get clean && rm -rf /var/lib/apt/lists/*
12
+
13
+ RUN wget https://huggingface.co/TheBloke/Llama-2-7B-GGUF/resolve/main/llama-2-7b.Q2_K.gguf
14
 
15
  COPY llama-annotate/ .
16