makefile change

This commit is contained in:
John Jones 2023-09-10 21:34:00 -04:00
parent 30b7b1588b
commit fa00d01542

View file

@ -1,8 +1,9 @@
FROM debian:12
RUN apt-get update -y && apt-get install -y build-essential g++ git
RUN apt-get update -y && apt-get install -y build-essential g++ git wget
WORKDIR /app/src
COPY . .
RUN make -j
VOLUME [ "/models" ]
WORKDIR /models
RUN wget https://huggingface.co/TheBloke/LLaMa-7B-GGML/resolve/main/llama-7b.ggmlv3.q4_0.bin
ENTRYPOINT [ "/app/src/start.sh" ]