FROM registry.fedoraproject.org/fedora:latest LABEL maintainer="Timo Trinks" RUN dnf upgrade -y --refresh RUN dnf install -y wget zip RUN dnf clean all RUN cd /tmp/ && wget https://github.com/VirusTotal/vt-cli/releases/latest/download/Linux64.zip && unzip /tmp/Linux64.zip -d /usr/local/bin/ ENTRYPOINT ["vt"] cmd ["--help"]