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