Compare commits

...

3 Commits

Author SHA1 Message Date
dfb87fad9b Merge pull request 'work' (#7) from work into main
Reviewed-on: #7
2025-08-18 18:53:17 +00:00
72325374f3 adding break system packages flag for container image
All checks were successful
/ Plan (push) Successful in 4m24s
/ Plan (pull_request) Successful in 27s
/ Deploy (pull_request) Successful in 27s
2025-08-18 13:48:26 -05:00
4c9d9ad7eb updating to trixie
Some checks failed
/ Plan (push) Failing after 4m4s
2025-08-18 13:41:56 -05:00

View File

@@ -1,8 +1,8 @@
FROM debian:bullseye-slim
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"]