Spaces:
Sleeping
Sleeping
File size: 277 Bytes
3859bd2 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.10 as base
WORKDIR /app
COPY ./requirements.txt /app/
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN wget https://huggingface.co/senseable/Westlake-7B-gguf/resolve/main/Westlake-7B-q4_k_m.gguf -O model.gguf
COPY . .
CMD ["python", "app.py"] |