dockerfiles/masscan/Dockerfile

26 lines
629 B
Docker
Raw Normal View History

FROM debian:sid
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
ca-certificates \
libpcap-dev \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN buildDeps=' \
gcc \
git \
make \
' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& git clone --depth 1 https://github.com/robertdavidgraham/masscan.git /usr/src/masscan \
&& cd /usr/src/masscan \
&& make \
&& make install \
&& rm -rf /usr/src/masscan \
&& apt-get purge -y --auto-remove $buildDeps
ENTRYPOINT [ "masscan" ]