CoolFace
Apppublic

LightRT/text2sql_backend

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.11-slim2\3RUN apt-get update && apt-get install -y \4    build-essential \5    libpq-dev \6    && rm -rf /var/lib/apt/lists/*7 8WORKDIR /app9 10COPY requirements.txt .11RUN pip install --no-cache-dir -r requirements.txt12 13COPY . .14 15EXPOSE 786016 17CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "7860"]