File size: 258 Bytes
3073577 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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"]
|