mirror of
https://github.com/bgp/bgpq4.git
synced 2024-05-11 05:55:05 +00:00
Debian 12, 11 and 10, Ubuntu 20.04 and 16.04, Fedora 34 and 33, CentOS Stream 8 and CentOS Linux 7, Rocky Linux 8, Alpine Edge and 3.14. Note: Especially CentOS containers are better maintained on Quay.io rather on Docker Hub (likely because it's a Red Hat service). CentOS Linux 8 reaches EOL on 2021-12-31 and is superseeded by Rocky Linux 8 as alternative bug-for-bug compatible RHEL 8 rebuild. Fedora Rawhide, 35 and CentOS Stream 9 (development) are currently broken: https://bugzilla.redhat.com/show_bug.cgi?id=1988199#c13
18 lines
273 B
Docker
18 lines
273 B
Docker
ARG image=alpine:latest
|
|
FROM $image
|
|
|
|
# Install dependencies
|
|
RUN apk upgrade
|
|
RUN apk add autoconf automake file gcc gzip libtool make musl-dev
|
|
|
|
# Add source code
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
# Run steps
|
|
RUN ./bootstrap
|
|
RUN ./configure
|
|
RUN make
|
|
RUN make check
|
|
RUN make distcheck
|