CoolFace
Apppublic

Mohanrajdeena/Intelligent-document-processing

sourceHugging Facemitupdated 16d agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1FROM python:3.11-slim2 3ENV PYTHONDONTWRITEBYTECODE=14ENV PYTHONUNBUFFERED=15ENV PIP_NO_CACHE_DIR=16 7WORKDIR /home/user/app8 9RUN apt-get update && apt-get install -y \10    libgl1 \11    libglib2.0-0 \12    libgomp1 \13    && rm -rf /var/lib/apt/lists/*14 15COPY requirements.txt .16 17RUN pip install --upgrade pip && \18    pip install -r requirements.txt19 20COPY app.py .21 22EXPOSE 786023 24CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=7860", "--server.headless=true"]