static-toolbox/recipes/nmap/linux_x86/Dockerfile
Jordan Power 6469f6709c
Added missing dependencies
Added flex and bison as required for libpcap
2019-06-03 16:13:05 +01:00

21 lines
421 B
Docker

FROM ubuntu:xenial
RUN apt-get update && \
apt upgrade -yy && \
apt install -yy \
automake \
cmake \
build-essential \
checkinstall \
libgmp-dev \
libmpfr-dev \
libmpc-dev \
wget \
git \
pkg-config \
python \
flex \
bison
RUN mkdir /build
ADD . /build
RUN chmod +x /build/build_x86.sh
CMD /build/build_x86.sh