mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-27 10:14:47 +00:00
25 lines
981 B
Docker
25 lines
981 B
Docker
############################################################
|
|
#
|
|
# Update with aarch64 support dependencies.
|
|
#
|
|
############################################################
|
|
FROM opennetworklinux/builder8:1.4
|
|
MAINTAINER Jeffrey Townsend <jeffrey.townsend@bigswitch.com>
|
|
|
|
RUN dpkg --add-architecture arm64
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
crossbuild-essential-arm64 \
|
|
gcc-aarch64-linux-gnu
|
|
|
|
RUN xapt -a arm64 libedit-dev ncurses-dev libsensors4-dev libwrap0-dev libssl-dev libsnmp-dev
|
|
|
|
RUN wget http://www.opennetlinux.org/tarballs/usr-bin-qemu-aarch64-static.tgz && tar -C / -xvzf usr-bin-qemu-aarch64-static.tgz && rm usr-bin-qemu-aarch64-static.tgz
|
|
RUN wget http://www.opennetlinux.org/tarballs/jessie-usr-buildroot-toolchains-arm64.tgz && tar -C / -xvzf jessie-usr-buildroot-toolchains-arm64.tgz && rm jessie-usr-buildroot-toolchains-arm64.tgz
|
|
|
|
#
|
|
# Docker shell and other container tools.
|
|
#
|
|
COPY docker_shell /bin/docker_shell
|
|
COPY container-id /bin/container-id
|