FROM python:3.12-slim

WORKDIR /app

RUN pip install --no-cache-dir pika==1.3.2

COPY app.py .

USER 65534:65534

CMD ["python", "app.py"]
