From 69c885462b65beaed02ae57ce0305fc77b2d5de3 Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Wed, 4 Jun 2025 15:29:52 -0400 Subject: [PATCH] Copy the src and add the `ENTRYPOINT` --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bf0aa26..90b5f26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,8 @@ FROM debian RUN apt-get update && \ apt-get install -y lm-sensors python3 && \ apt-get clean && \ - rm -rf /var/lib/apt/lists/* \ No newline at end of file + rm -rf /var/lib/apt/lists/* + +COPY ./src . + +ENTRYPOINT [ "python3", "src/main.py" ] \ No newline at end of file