Spaces:
Runtime error
Runtime error
FROM python:3.10 | |
WORKDIR /app | |
COPY ./requirements.txt /app/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt && \ | |
wget https://huggingface.co/mradermacher/Absolute_Zero_Reasoner-Coder-14b-GGUF/resolve/main/Absolute_Zero_Reasoner-Coder-14b.Q8_0.gguf -O model.gguf && \ | |
useradd -m -u 1000 user | |
USER user | |
COPY --chown=user . . | |
CMD ["python", "app.py"] | |