FROM debian:bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends jq wget redis-tools ca-certificates && rm -rf /var/lib/apt/lists/* COPY profiler.sh /profiler.sh COPY fetch-one.sh /fetch-one.sh RUN chmod +x /profiler.sh /fetch-one.sh CMD ["/profiler.sh"]