Robert Kaussow
a410b1468b
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
369 B
Docker
17 lines
369 B
Docker
FROM centos:7
|
|
|
|
RUN yum install -y gcc gcc-c++ \
|
|
libtool libtool-ltdl \
|
|
make cmake \
|
|
git \
|
|
pkgconfig \
|
|
wget \
|
|
automake autoconf \
|
|
yum-utils rpm-build && \
|
|
yum clean all
|
|
|
|
USER root
|
|
|
|
ENV FLAVOR=rpmbuild OS=centos DIST=el7
|
|
CMD /srv/pkg
|