blob: 09b324c65420d276bb375fd57ebbf8d0d6a4fc2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
####
# A Docker container for running xmap
#
# To build, beware of caching and:
#
# * If you wish to build current master
#
# docker build -t xmap_ubuntu -f Dockerfile .
#
# * If you wish to build a specific commit, use the XMAP_COMMIT build argument.
#
# docker build -t xmap_ubuntu -f Dockerfile --build-arg XMAP_COMMIT=<your commit> .
#
# To run:
#
# docker run -it --rm --net=host xmap_ubuntu <xmap args>
####
FROM ubuntu:16.04
WORKDIR /project/xmap
COPY . .
RUN apt-get -qq update && apt-get -qqy upgrade
# install xmap build dependencies
RUN apt-get -qqy install build-essential cmake libgmp3-dev gengetopt libpcap-dev flex byacc libjson-c-dev pkg-config libunistring-dev wget unzip
# install xmap+Docker specific things, currently just dumb-init, which allows
# us to more easily send signals to xmap, for example by allowing ctrl-c of
# a running container and xmap will stop.
RUN apt-get -qqy install python3-dev python3-pip
RUN pip3 install dumb-init
RUN cmake . && make -j4 && make install
ENTRYPOINT ["dumb-init", "/usr/local/sbin/xmap"]
|