Spaces:
Runtime error
Runtime error
File size: 412 Bytes
793e7f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# تعریف پایه Docker
FROM python:3.9-slim
# نصب وابستگیهای سیستمی
RUN apt-get update && apt-get install -y ffmpeg
# نصب وابستگیهای Python
COPY requirements.txt .
RUN pip install -r requirements.txt
# کپی کد برنامه به داخل کانتینر
COPY . /app
WORKDIR /app
# تعریف دستور اجرای برنامه
CMD ["streamlit", "run", "app.py"]
|