From 00c93976f5d2018315a8a04e24ccfa3e24c401f4 Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Fri, 6 Jun 2025 14:20:33 -0400 Subject: [PATCH] Include `python3-requests` package --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90b5f26..81a5346 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM debian RUN apt-get update && \ - apt-get install -y lm-sensors python3 && \ + apt-get install -y lm-sensors python3 python3-requests && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -COPY ./src . +COPY . . -ENTRYPOINT [ "python3", "src/main.py" ] \ No newline at end of file +ENTRYPOINT [ "python3", "/src/main.py" ] \ No newline at end of file