2024-11-26 12:27:27 -06:00
|
|
|
FROM debian:bullseye-slim
|
|
|
|
#
|
2024-11-26 12:43:45 -06:00
|
|
|
RUN apt update && apt install python3 python3-pip iputils-ping -y
|
2024-11-26 12:27:27 -06:00
|
|
|
COPY logpingresult.py /usr/local/bin/
|
|
|
|
COPY requirements.txt /
|
|
|
|
COPY init.sh /
|
|
|
|
RUN chmod +x /init.sh
|
|
|
|
RUN chmod +x /usr/local/bin/logpingresult.py
|
|
|
|
RUN pip3 install -r /requirements.txt
|
|
|
|
RUN apt clean
|
|
|
|
CMD ["/init.sh"]
|