FROM python:3-buster

COPY requirements.txt .
RUN pip install -r requirements.txt

COPY main.py .
CMD [ "python", "main.py" ]
