Koboldcpp / Dockerfile
Illumotion's picture
Upload folder using huggingface_hub
3e5595b
raw
history blame
365 Bytes
FROM python
WORKDIR /app
COPY . .
RUN apt update \
&& apt install build-essential wget libopenblas-dev make -y \
&& make \
&& wget https://huggingface.co/xzuyn/GPT-J-Shinen-6B-GGML/resolve/main/ggjtv1-model-q5_1.bin \
&& apt remove build-essential wget make -y
ENTRYPOINT ["python", "koboldcpp.py", "ggjtv1-model-q5_1.bin", "--port", "7860", "--smartcontext"]