bf-router-trainer / Dockerfile
OpenCircuit's picture
Deploy BF-Router trainer (Qwen3-4B QLoRA + Gradio)
2ff5691
raw
history blame contribute delete
281 Bytes
FROM nvidia/cuda:12.4.0-runtime-ubuntu22.04
RUN apt-get update && apt-get install -y python3 python3-pip git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python3", "app.py"]