1
0
mirror of https://github.com/bgp/bgpq4.git synced 2024-05-11 05:55:05 +00:00
bgp-bgpq4/.github/images/centos.Dockerfile
Roelf Wichertjes 2f8e7283e7 Add matrix builds.
2019-12-17 12:29:57 +01:00

20 lines
296 B
Docker

ARG image=centos:8
FROM $image
# Install dependencies
RUN yum update -y
RUN yum groupinstall -y 'Development Tools'
RUN yum install -y autoconf automake findutils
# Add source code
ADD . /src
WORKDIR /src
# Run steps
RUN ./bootstrap
RUN ./configure
RUN make
RUN make check
RUN make distcheck