From 4c9d9ad7eb4de5bdac8075c1781b2eefcfb43e73 Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Mon, 18 Aug 2025 13:41:56 -0500 Subject: [PATCH 1/2] updating to trixie --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5465354..dc6d415 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bullseye-slim +FROM debian:trixie-slim # COPY requirements.txt / COPY init.sh / -- 2.49.1 From 72325374f3a295f79cca91bc0ca3d51c35dc3231 Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Mon, 18 Aug 2025 13:48:26 -0500 Subject: [PATCH 2/2] adding break system packages flag for container image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc6d415..d4044bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM debian:trixie-slim # COPY requirements.txt / COPY init.sh / -RUN apt update && apt install python3 python3-pip -y && pip3 install -r /requirements.txt && apt clean +RUN apt update && apt install python3 python3-pip -y && pip3 install -r /requirements.txt --break-system-packages && apt clean COPY enphase.py /usr/local/bin/ RUN chmod +x /init.sh && chmod +x /usr/local/bin/enphase.py CMD ["/init.sh"] \ No newline at end of file -- 2.49.1