FROM python:3.13-slim

RUN pip install --no-cache-dir flask redis

COPY queue-service.py /app/queue-service.py
WORKDIR /app

EXPOSE 8091

CMD ["python3", "queue-service.py"]
