FROM python:3.11-slim
WORKDIR /app
RUN pip install paho-mqtt
COPY agent.py .
CMD ["python", "agent.py"]
