VisualQuality-R1-7B / Dockerfile
VOIDER's picture
Update Dockerfile
28178bb verified
raw
history blame
288 Bytes
FROM ghcr.io/abetlen/llama-cpp-python:latest
USER root
WORKDIR /workspace
# Install dependencies for vision
RUN pip install --no-cache-dir \
gradio \
huggingface-hub \
Pillow
COPY app.py .
ENV PYTHONUNBUFFERED=1 \
GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"]