FROM --platform=linux/amd64 python

COPY . .

RUN python3 -m ensurepip --upgrade

RUN pip install -r requirements.txt

CMD ["python3","consumer.py"]