]> git.puffer.fish Git - mirror/frr.git/commitdiff
docker: Make docker image on CentOS 7 5430/head
authorToshiki Tsuchiya <taruta0811@gmail.com>
Sun, 24 Nov 2019 20:28:54 +0000 (20:28 +0000)
committerToshiki Tsuchiya <taruta0811@gmail.com>
Tue, 26 Nov 2019 19:29:30 +0000 (19:29 +0000)
- Build rpm package from source on CentOS 7
- Use multi-stage builds to reduce docker image size

Signed-off-by: Toshiki Tsuchiya <taruta0811@gmail.com>
.dockerignore
docker/centos/Dockerfile [new file with mode: 0644]
docker/centos/build.sh [new file with mode: 0755]
docker/centos/docker-start [new file with mode: 0755]

index d613e18dfc0ae1e810854a5396fccab3b5c08aa0..e6e1310d24902435157452ff2b5fb7843c643856 100644 (file)
@@ -6,3 +6,4 @@
 **/*.so
 **/.libs
 docker/alpine/pkgs
+docker/centos/pkgs
diff --git a/docker/centos/Dockerfile b/docker/centos/Dockerfile
new file mode 100644 (file)
index 0000000..088a320
--- /dev/null
@@ -0,0 +1,43 @@
+# This stage builds an rpm from the source
+FROM centos:centos7 as centos-builder
+
+RUN yum install -y rpm-build autoconf automake libtool make \
+        readline-devel texinfo net-snmp-devel groff pkgconfig \
+        json-c-devel pam-devel bison flex pytest c-ares-devel \
+        python-devel systemd-devel python-sphinx libcap-devel \
+        https://ci1.netdef.org/artifact/LIBYANG-YANGRELEASE/shared/build-10/CentOS-7-x86_64-Packages/libyang-0.16.111-0.x86_64.rpm \
+        https://ci1.netdef.org/artifact/LIBYANG-YANGRELEASE/shared/build-10/CentOS-7-x86_64-Packages/libyang-devel-0.16.111-0.x86_64.rpm \
+        https://ci1.netdef.org/artifact/RPKI-RTRLIB/shared/build-110/CentOS-7-x86_64-Packages/librtr-0.7.0-1.el7.centos.x86_64.rpm \
+        https://ci1.netdef.org/artifact/RPKI-RTRLIB/shared/build-110/CentOS-7-x86_64-Packages/librtr-devel-0.7.0-1.el7.centos.x86_64.rpm
+
+COPY . /src
+ARG PKGVER
+
+RUN echo '%_smp_mflags %( echo "-j$(/usr/bin/getconf _NPROCESSORS_ONLN)"; )' >> /root/.rpmmacros \
+    && cd /src \
+    && ./bootstrap.sh \
+    && ./configure \
+        --enable-rpki \
+        --enable-numeric-version \
+        --with-pkg-extra-version="_git$PKGVER" \
+    && make dist \
+    && cd / \
+    && mkdir -p /rpmbuild/{SOURCES,SPECS} \
+    && cp /src/frr*.tar.gz /rpmbuild/SOURCES \
+    && cp /src/redhat/frr.spec /rpmbuild/SPECS \
+    && rpmbuild \
+        --define "_topdir /rpmbuild" \
+        -ba /rpmbuild/SPECS/frr.spec
+
+# This stage installs frr from the rpm
+FROM centos:centos7
+RUN mkdir -p /pkgs/rpm \
+    && yum install -y https://ci1.netdef.org/artifact/LIBYANG-YANGRELEASE/shared/build-10/CentOS-7-x86_64-Packages/libyang-0.16.111-0.x86_64.rpm \
+        https://ci1.netdef.org/artifact/RPKI-RTRLIB/shared/build-110/CentOS-7-x86_64-Packages/librtr-0.7.0-1.el7.centos.x86_64.rpm
+
+COPY --from=centos-builder /rpmbuild/RPMS/ /pkgs/rpm/
+
+RUN yum install -y /pkgs/rpm/*/*.rpm \
+    && rm -rf /pkgs
+COPY docker/centos/docker-start /usr/lib/frr/docker-start
+ENTRYPOINT [ "/usr/lib/frr/docker-start" ]
diff --git a/docker/centos/build.sh b/docker/centos/build.sh
new file mode 100755 (executable)
index 0000000..9cd0f61
--- /dev/null
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+set -e
+
+##
+# Package version needs to be decimal
+##
+GITREV="$(git rev-parse --short=10 HEAD)"
+PKGVER="$(printf '%u\n' 0x$GITREV)"
+
+mkdir -p docker/centos/pkgs
+docker build \
+       --file=docker/centos/Dockerfile \
+       --build-arg="PKGVER=$PKGVER" \
+       --tag="frr:centos-builder-$GITREV" \
+       --target=centos-builder \
+       .
+
+# Copy RPM package from container to host
+CONTAINER_ID="$(docker create "frr:centos-builder-$GITREV")"
+docker cp "${CONTAINER_ID}:/rpmbuild/RPMS/x86_64/" docker/centos/pkgs
+docker rm "${CONTAINER_ID}"
+
+docker build \
+       --cache-from="frr:centos-builder-$GITREV" \
+       --file=docker/centos/Dockerfile \
+       --build-arg="PKGVER=$PKGVER" \
+       --tag="frr:centos-$GITREV" \
+       .
+
+docker rmi "frr:centos-builder-$GITREV"
diff --git a/docker/centos/docker-start b/docker/centos/docker-start
new file mode 100755 (executable)
index 0000000..a391324
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+##
+# Change owner for docker volume mount
+##
+chown -R frr:frr /etc/frr
+/usr/lib/frr/frrinit.sh start
+
+# Sleep forever
+exec tail -f /dev/null