CoolFace
Apppublic

devappsmi/document_parse

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y --no-install-recommends \6    libgl1 \7    libglib2.0-0 \8    libgomp1 \9    && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt .12RUN pip install --no-cache-dir -r requirements.txt13 14COPY app.py .15 16EXPOSE 786017 18CMD ["python", "app.py"]