Dockerfile 162 B

123456789
  1. FROM python:3.11 AS backend
  2. WORKDIR /usr/src/discord_bot
  3. COPY requirements.txt .
  4. RUN pip install -r requirements.txt
  5. COPY . .
  6. CMD ["python", "discord_bot.py"]