Dockerfile 91 B

123456789
  1. FROM python:3
  2. WORKDIR /
  3. COPY . .
  4. RUN pip install -r requirements.txt
  5. CMD python bot.py