Kiuyha/Audio-Separation-Inspector
0
1 2FROM python:3.13.5-slim3 4WORKDIR /app5 6RUN apt-get update && apt-get install -y \7 build-essential \8 curl \9 git \10 && rm -rf /var/lib/apt/lists/*11 12COPY . .13 14RUN pip3 install torch --index-url https://download.pytorch.org/whl/cpu15RUN pip3 install -r requirements.txt16 17EXPOSE 850118 19HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health20 21ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]22 