Initial commit
This commit is contained in:
parent
4ae8082081
commit
4cee679bdb
802 changed files with 2840 additions and 1 deletions
recipes/nmap/linux_x86
19
recipes/nmap/linux_x86/Dockerfile
Normal file
19
recipes/nmap/linux_x86/Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
||||
RUN mkdir /build
|
||||
ADD . /build
|
||||
RUN chmod +x /build/build_x86.sh
|
||||
CMD /build/build_x86.sh
|
Loading…
Add table
Add a link
Reference in a new issue