File size: 795 Bytes
5347fea
 
133c842
 
3f9e6d4
38f7aaf
 
3f9e6d4
 
 
 
5347fea
d01454c
9748202
d01454c
5347fea
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM python:3.9 AS downloader
WORKDIR /app

# https://github.com/ggerganov/llama.cpp/actions/runs/4556973815/jobs/8038018313
FROM ghcr.io/ggerganov/llama.cpp:light-f202ada131f60059112a948f660b2e0ac93d049a

RUN apt-get update && \
    apt-get install -y wget && \
    rm -rf /var/lib/apt/lists/*
RUN mkdir -p ./models/7B
RUN wget -O ./models/7B/ggml-alpaca-7b-q4.bin https://huggingface.co/frankenstyle/ggml-q4-models/resolve/main/models/alpaca/7B/ggml-alpaca-7b-q4.bin

CMD ["-m", "/models/7B/ggml-alpaca-7b-q4.bin", "-p", "Building a website can be done in 10 simple steps:", "-n", "512"]

# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]