Copy the src and add the ENTRYPOINT

This commit is contained in:
2025-06-04 15:29:52 -04:00
parent 171bbe044d
commit 69c885462b

View File

@ -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/*
rm -rf /var/lib/apt/lists/*
COPY ./src .
ENTRYPOINT [ "python3", "src/main.py" ]