FROM python:3.9-bullseye

WORKDIR /work

COPY . .
RUN pip install -r requirements.txt

CMD python abcbot.py
