Files
discord-guess-img-bot/Dockerfile
T

20 lines
431 B
Docker
Raw Normal View History

# 使用 Python 映像檔
2026-03-04 01:26:56 +08:00
FROM python:3.11-slim
# 更新系統並安裝 FFmpeg
RUN apt-get update && \
apt-get install -y ffmpeg && \
rm -rf /var/lib/apt/lists/*
# 設定工作目錄
2026-03-04 01:26:56 +08:00
WORKDIR /app
# 複製並安裝 Python 套件
2026-03-04 01:26:56 +08:00
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 複製程式碼
2026-03-04 01:26:56 +08:00
COPY . .
# 執行 Bot,加上 -u 確保輸出不被快取
CMD ["python", "-u", "discord-bot.py"]