File-Converter / Dockerfile
attendantelectro's picture
Create Dockerfile
793e7f6 verified
raw
history blame
412 Bytes
# تعریف پایه 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"]