9 lines
147 B
Docker
9 lines
147 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir paho-mqtt aiohttp
|
|
|
|
COPY aggregator.py .
|
|
|
|
CMD ["python", "-u", "aggregator.py"]
|