mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-26 17:57:01 +00:00
38 lines
1.4 KiB
Docker
38 lines
1.4 KiB
Docker
############################################################
|
|
#
|
|
# Update with FRR support dependencies.
|
|
#
|
|
############################################################
|
|
FROM opennetworklinux/builder8:1.5
|
|
MAINTAINER Jeffrey Townsend <jeffrey.townsend@bigswitch.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
chrpath devscripts dh-autoreconf dh-systemd flex \
|
|
hardening-wrapper libcap-dev libc-ares-dev libjson0 \
|
|
libjson0-dev libjson-c-dev libpam0g-dev libpcre3-dev \
|
|
libreadline-dev libsystemd-dev pkg-config \
|
|
texlive-generic-recommended texinfo texlive-latex-base
|
|
|
|
RUN xapt -a powerpc chrpath hardening-wrapper \
|
|
libcap-dev libc-ares-dev libjson0 libjson0-dev \
|
|
libjson-c-dev libpam0g-dev libpcre3-dev libreadline-dev \
|
|
libsystemd-dev pkg-config texinfo libreadline6-dev \
|
|
libtext-unidecode-perl libintl-perl libxml-libxml-perl
|
|
|
|
RUN xapt -a arm64 chrpath hardening-wrapper \
|
|
libcap-dev libc-ares-dev libjson0 libjson0-dev \
|
|
libjson-c-dev libpam0g-dev libpcre3-dev libreadline-dev \
|
|
libsystemd-dev pkg-config texinfo libreadline6-dev \
|
|
libintl-perl libxml-libxml-perl
|
|
|
|
RUN xapt -a armel chrpath hardening-wrapper \
|
|
libcap-dev libc-ares-dev libjson0 libjson0-dev \
|
|
libjson-c-dev libpam0g-dev libpcre3-dev libreadline-dev \
|
|
libsystemd-dev pkg-config texinfo libreadline6-dev \
|
|
libintl-perl libxml-libxml-perl
|
|
|
|
# Docker shell and other container tools.
|
|
#
|
|
COPY docker_shell /bin/docker_shell
|
|
COPY container-id /bin/container-id
|