Files
bgpq4/.github/images/centos.Dockerfile
2021-08-17 14:36:30 +00:00

20 lines
304 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 libtool
# Add source code
ADD . /src
WORKDIR /src
# Run steps
RUN ./bootstrap
RUN ./configure
RUN make
RUN make check
RUN make distcheck