CoolFace
Apppublic

acadiaway/gemini_nl2sql

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
1likes
Dockerfile21 linesDownload Raw Back to root
1FROM python:3.12-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    libpq-dev \8    curl \9    && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt .12RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt13 14COPY app.py pipeline.py db_utils.py ./15 16ENV PORT=850117 18EXPOSE 850119 20CMD ["python", "-u", "-m", "streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]21