File size: 382 Bytes
f8c5b0d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python
WORKDIR /app
COPY . .
RUN apt update \
 && apt install build-essential wget libopenblas-dev make -y \
 && make \
 && wget https://huggingface.co/richardr1126/sql-wizard-coder-ggml/resolve/main/sql-wizard-coder-15b-q4_0.bin\
 && apt remove build-essential wget make -y

 ENTRYPOINT ["python", "koboldcpp.py", "sql-wizard-coder-15b-q4_0.bin", "--port", "7860", "--stream"]