Discord-Raid-bot/Dockerfile

20 lines
378 B
Text
Raw Permalink Normal View History

2025-08-22 13:25:34 +00:00
FROM python:3.9-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
sqlite3 \
&& rm -rf /var/lib/apt/lists/*
# Copy dependency file
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
2025-08-26 13:02:34 +00:00
COPY . .
2025-08-22 13:25:34 +00:00
# Environment variables
ENV PYTHONUNBUFFERED=1
CMD ["python", "bot.py"]