prompt-generator / Dockerfile
chmielvu's picture
Upload folder using huggingface_hub
2285363 verified
raw
history blame contribute delete
481 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
libopenblas-dev \
libgomp1 \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir \
https://huggingface.co/Luigi/llama-cpp-python-wheels-hf-spaces-free-cpu/resolve/main/llama_cpp_python-0.3.22-cp310-cp310-linux_x86_64.whl
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]