CoolFace
Apppublic

Aigenthix/Graph_RAG7

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    gcc \7    g++ \8    && rm -rf /var/lib/apt/lists/*9 10COPY requirements.txt .11RUN pip install --no-cache-dir -r requirements.txt12 13COPY app.py .14COPY templates/ templates/15 16RUN mkdir -p data/uploads data/graph_data17 18ENV FLASK_APP=app.py19ENV PORT=786020 21EXPOSE 786022 23CMD ["python", "app.py"]24