| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY app.py . | |
| EXPOSE 7860 | |
| ENV VLLM_BASE_URL=http://129.212.178.215:8000/v1 | |
| ENV MODEL_NAME=Qwen/Qwen2.5-1.5B-Instruct | |
| CMD ["python", "app.py"] | |