From 0241f9f36cefe1aa34034e10a6247d1b653e2373 Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Mon, 18 Aug 2025 13:57:56 -0500 Subject: [PATCH] fixing order of operations --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f8a4f0..8fd8f36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian:trixie-slim COPY requirements.txt / COPY init.sh / RUN chmod +x /init.sh -RUN chmod +x /usr/local/bin/logpingresult.py 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 CMD ["/init.sh"] \ No newline at end of file