https://github.com/Fog-Forest/scripts/tree/main/oracle-lookbusy
FROM debian:13-slim AS builder
LABEL authors="Kinoko"
RUN apt update \
&& apt install -y curl wget cron git cmake build-essential \
&& git clone https://github.com/flow2000/lookbusy.git \
&& cd lookbusy && chmod +x ./configure && ./configure && make && make install
COPY ./app /app
RUN chmod +x /app/*.sh
FROM debian:13-slim
USER root
WORKDIR /app
COPY --from=builder /usr/local/bin/lookbusy /usr/local/bin/lookbusy
COPY --from=builder /app /app
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt/lists,sharing=locked true \
&& apt update \
&& apt install -y curl cron \
&& curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | bash \
&& apt install -y speedtest
CMD [ "/app/docker-entrypoint.sh" ]
Content type
Image
Digest
sha256:9cc2f8cbc…
Size
60.4 MB
Last updated
6 months ago
docker pull izumiko/lookbusy