CoolFace
Apppublic

qtpi/FigureAndTableAnalyserWithoutLLM

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1# Use official Python image2FROM python:3.10-slim3 4# Set working directory5WORKDIR /app6 7# Install system dependencies (Java for pdffigures2.jar)8RUN apt-get update && \9    apt-get install -y default-jre && \10    apt-get clean && \11    rm -rf /var/lib/apt/lists/*12 13# Copy project files14COPY . .15 16# Install Python dependencies17RUN pip install --no-cache-dir -r requirements.txt18 19# Hugging Face requires port 7860 to be exposed20EXPOSE 786021 22# Run the Gradio app23CMD ["python", "app.py"]24