FROM registry.fedoraproject.org/fedora:latest LABEL maintainer="Timo Trinks" RUN dnf upgrade -y --refresh RUN dnf install -y git curl yara wget tar pip bind-utils whois RUN dnf clean all RUN pip install mmh3 RUN pip install -U --user shodan COPY icon.py /usr/local/bin/icon.py RUN ["chmod", "0755", "/usr/local/bin/icon.py"] COPY shodaninit.sh /usr/local/bin/shodaninit.sh RUN ["chmod", "0755", "/usr/local/bin/shodaninit.sh"] ENTRYPOINT ["/usr/local/bin/shodaninit.sh"]