add Fedora's Dockerfile for CI

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
This commit is contained in:
Igor Gnatenko 2017-07-20 16:39:57 +02:00
parent 553a06af1a
commit 718e89a7c1
1 changed files with 49 additions and 0 deletions

49
ci/Dockerfile Normal file
View File

@ -0,0 +1,49 @@
FROM fedora
MAINTAINER Igor Gnatenko <i.gnatenko.brain@gmail.com>
WORKDIR /opt/rpm
COPY . .
RUN echo -e "deltarpm=0\ninstall_weak_deps=0\ntsflags=nodocs" >> /etc/dnf/dnf.conf
RUN dnf -y update
RUN dnf -y install \
autoconf \
automake \
libtool \
gettext-devel \
make \
gcc \
zlib-devel \
bzip2-devel \
xz-devel \
elfutils-libelf-devel \
elfutils-devel \
openssl-devel \
file-devel \
popt-devel \
libarchive-devel \
libdb-devel \
libselinux-devel \
ima-evm-utils \
libcap-devel \
libacl-devel \
lua-devel readline-devel \
dbus-devel \
fakechroot which \
elfutils binutils \
findutils sed grep gawk diffutils file patch \
tar unzip gzip bzip2 cpio xz \
pkgconfig \
/usr/bin/gdb-add-index \
dwz \
&& dnf clean all
RUN autoreconf -vfi
RUN ./configure \
--with-crypto=openssl \
--with-selinux \
--with-cap \
--with-acl \
--with-lua
RUN make
CMD make check; rc=$?; cat tests/rpmtests.log; exit $rc