FROM python:3 COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt COPY . /app/ WORKDIR /app/ CMD python ./src/consumer.py