FROM python:3.10-slim # ဗီဒီယိုနှင့် အသံများ ပေါင်းစပ်ရန်အတွက် မဖြစ်မနေလိုအပ်သော ffmpeg ကို ထည့်သွင်းခြင်း RUN apt-get update && apt-get install -y ffmpeg && apt-get clean WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY . . # Hugging Face Spaces ၏ Port 7860 ကို လမ်းကြောင်းဖွင့်ပေးခြင်း EXPOSE 7860 CMD ["python", "bot.py"]