Spaces:
Runtime error
Runtime error
# 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 | |
FROM ghcr.io/ggerganov/llama.cpp:light | |
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/gpt-j-ggml-model-q4_0.bin https://huggingface.co/ocordeiro/ggml-gpt-j-6b-q4_0/resolve/main/gpt-j-ggml-model-q4_0.bin | |
CMD ["-m", "/models/7B/gpt-j-ggml-model-q4_0.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"] |