Include python3-requests package

This commit is contained in:
2025-06-06 14:20:33 -04:00
parent cacc1b827f
commit 00c93976f5

View File

@ -1,10 +1,10 @@
FROM debian FROM debian
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y lm-sensors python3 && \ apt-get install -y lm-sensors python3 python3-requests && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
COPY ./src . COPY . .
ENTRYPOINT [ "python3", "src/main.py" ] ENTRYPOINT [ "python3", "/src/main.py" ]