Spaces:
Sleeping
Sleeping
FROM python:3.10-slim | |
WORKDIR /app | |
COPY . /app | |
RUN apt-get update && apt-get install -y build-essential ffmpeg git && \ | |
pip install --no-cache-dir -r requirements.txt | |
EXPOSE 8000 8501 | |
CMD ["bash", "-c", "uvicorn main:app --host 0.0.0.0 --port 8000 & streamlit run frontend/streamlit_app.py --server.port 8501 --server.address 0.0.0.0"] | |