CoolFace
Apppublic

AlreemAk5/ArabicSignLanguageRecognition

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1FROM python:3.11-slim2 3# Minimal system dependencies for headless OpenCV + video4RUN apt-get update && apt-get install -y \5    ffmpeg \6    libglib2.0-0 \7    && rm -rf /var/lib/apt/lists/*8 9WORKDIR /src10 11COPY requirements.txt /src12RUN pip install --no-cache-dir -r requirements.txt13 14COPY src /src15 16CMD ["streamlit", "run", "streamlit_app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]17 18