Spaces:
Sleeping
Sleeping
# 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.10 | |
WORKDIR /code | |
RUN wget https://huggingface.co/mradermacher/shieldgemma-9b-GGUF/resolve/main/shieldgemma-9b.Q4_K_M.gguf?download=true -O shieldgemma-9b.Q4_K_M.gguf | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
COPY . . | |
ENV MPLCONFIGDIR /code/matplotlib/ | |
CMD ["python", "app.py"] |