FROM python:3.10-bullseye

WORKDIR /work

COPY . .
RUN pip install -r requirements.txt

CMD python abcbot.py
