speedtestlog/Dockerfile
Dan Hamik 192fc55105
Some checks failed
/ Plan (push) Failing after 15s
move to installing via the ookla method
2024-11-26 13:29:04 -06:00

14 lines
465 B
Docker

FROM debian:bullseye-slim
#
COPY ookla_speedtest_cli.list /
RUN apt update && apt install curl
RUN curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | bash
RUN apt install python3 python3-pip iputils-ping speedtest -y
COPY logspeedtest.py /usr/local/bin/
COPY requirements.txt /
COPY init.sh /
RUN chmod +x /init.sh
RUN chmod +x /usr/local/bin/logspeedtest.py
RUN pip3 install -r /requirements.txt
RUN apt clean
CMD ["/init.sh"]