CoolFace
Apppublic

PABPAT/TCI_Shield

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.13-slim2 3WORKDIR /app4 5COPY requirements.txt .6 7RUN apt-get update && apt-get install -y \8    build-essential \9    curl \10    portaudio19-dev \11    && rm -rf /var/lib/apt/lists/*12 13RUN pip install --no-cache-dir -r requirements.txt14 15COPY . .16 17EXPOSE 850118 19CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]