CoolFace
Apppublic

jeongsoo/RAG6_DockerLLM_API_Service

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.9-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10ENV PORT=786011ENV API_BASE_URL=https://your-deployed-api-url.com12 13CMD gunicorn app:app --bind 0.0.0.0:7860