summaryrefslogtreecommitdiff
path: root/devtools/Dockerfile.fedora
blob: 2cbb25a7033d5436432b2e713f03b29f5d553e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM fedora:latest

ARG CONFIGURE_OPTS="--enable-seccomp"

RUN dnf install -y perl automake autoconf libseccomp-devel libevent-devel gcc make git

ADD . /src
WORKDIR /src

RUN aclocal && autoheader && automake --foreign --add-missing && autoconf
RUN ./configure ${CONFIGURE_OPTS}
RUN make -j

CMD make test