summaryrefslogtreecommitdiffstats
path: root/shodan/Dockerfile
blob: 12a87c447a14f60697e0296ff9c44781569e50d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 -U --user shodan

COPY shodaninit.sh /usr/local/bin/shodaninit.sh
RUN ["chmod", "0755", "/usr/local/bin/shodaninit.sh"]
ENTRYPOINT ["/usr/local/bin/shodaninit.sh"]