FROM eclipse-temurin:17-jre-jammy RUN apt-get update && \ apt-get install -y wget jq bash && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* WORKDIR /data COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]