qqqsfasdf's picture
Update Dockerfile
89afe36 verified
raw
history blame contribute delete
291 Bytes
FROM python:3.10-slim
# تحديث وتثبيت ffmpeg فقط (بدون مونجو)
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
ENV PORT=7860
EXPOSE 7860
CMD ["python3", "bot.py"]