mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-27 18:25:00 +00:00
28 lines
809 B
Docker
28 lines
809 B
Docker
############################################################
|
|
#
|
|
# Add armel and armhf
|
|
#
|
|
############################################################
|
|
FROM opennetworklinux/builder9:1.2
|
|
MAINTAINER Jeffrey Townsend <jeffrey.townsend@bigswitch.com>
|
|
|
|
RUN dpkg --add-architecture armel
|
|
RUN dpkg --add-architecture armhf
|
|
|
|
RUN apt-get update && apt-get upgrade -y
|
|
|
|
RUN apt-get install -y \
|
|
crossbuild-essential-armel \
|
|
gcc-arm-linux-gnueabi \
|
|
crossbuild-essential-armhf \
|
|
gcc-arm-linux-gnueabi
|
|
|
|
RUN xapt -a armel libedit-dev ncurses-dev libsensors4-dev libwrap0-dev libssl-dev libsnmp-dev
|
|
RUN xapt -a armhf libedit-dev ncurses-dev libsensors4-dev libwrap0-dev libssl-dev libsnmp-dev
|
|
|
|
#
|
|
# Docker shell and other container tools.
|
|
#
|
|
COPY docker_shell /bin/docker_shell
|
|
COPY container-id /bin/container-id
|