Compare commits

...

3 Commits

Author SHA1 Message Date
ce84450c64 Merge pull request 'work' (#4) from work into main
Reviewed-on: #4
2025-08-18 19:03:17 +00:00
0241f9f36c fixing order of operations
All checks were successful
/ Plan (push) Successful in 4m24s
/ Plan (pull_request) Successful in 28s
/ Deploy (pull_request) Successful in 28s
2025-08-18 13:57:56 -05:00
0cca15af60 updating to trixie and flattening image
Some checks failed
/ Plan (push) Failing after 44s
2025-08-18 13:56:15 -05:00

View File

@@ -1,11 +1,9 @@
FROM debian:bullseye-slim
FROM debian:trixie-slim
#
COPY logpingresult.py /usr/local/bin/
COPY requirements.txt /
COPY init.sh /
RUN chmod +x /init.sh
RUN apt update && apt install python3 python3-pip iputils-ping -y && pip3 install -r /requirements.txt --break-system-packages && apt clean
COPY logpingresult.py /usr/local/bin/
RUN chmod +x /usr/local/bin/logpingresult.py
RUN apt update && apt install python3 python3-pip iputils-ping -y
RUN pip3 install -r /requirements.txt
RUN apt clean
CMD ["/init.sh"]