# ပေါ့ပါးတဲ့ Python Image ကို သုံးမယ် FROM python:3.10-slim # Working directory သတ်မှတ်မယ် WORKDIR /code # လိုအပ်တဲ့ dependencies တွေကို အရင်တင်မယ် COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # ကျန်တဲ့ code တွေကို ကူးမယ် COPY . . # Hugging Face က user permission အတွက် ပေးဖို့လိုတဲ့ settings (Optional but recommended) RUN chmod -R 777 /code # Bot ကို စတင် run မယ် CMD ["python", "app.py"]