2022-03-14 05:09:20 -05:00
|
|
|
|
{% set prefix = DEFAULT_CONTAINER_REGISTRY %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" and MULTIARCH_QEMU_ENVIRON == "y" %}
|
2022-03-14 05:09:20 -05:00
|
|
|
|
FROM {{ prefix }}multiarch/qemu-user-static:x86_64-arm-6.1.0-8 as qemu
|
|
|
|
|
FROM {{ prefix }}multiarch/debian-debootstrap:armhf-bullseye
|
2021-06-22 10:33:42 -05:00
|
|
|
|
COPY --from=qemu /usr/bin/qemu-arm-static /usr/bin
|
|
|
|
|
{%- elif CONFIGURED_ARCH == "arm64" and MULTIARCH_QEMU_ENVIRON == "y" %}
|
2022-03-14 05:09:20 -05:00
|
|
|
|
FROM {{ prefix }}multiarch/qemu-user-static:x86_64-aarch64-6.1.0-8 as qemu
|
|
|
|
|
FROM {{ prefix }}multiarch/debian-debootstrap:arm64-bullseye
|
2021-10-25 17:36:55 -05:00
|
|
|
|
COPY --from=qemu /usr/bin/qemu-aarch64-static /usr/bin
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- elif CONFIGURED_ARCH == "armhf" and CROSS_BUILD_ENVIRON == "y" %}
|
|
|
|
|
FROM {{ prefix }}multiarch/qemu-user-static:x86_64-arm-6.1.0-8 as qemu
|
|
|
|
|
FROM {{ prefix }}debian:bullseye
|
|
|
|
|
COPY --from=qemu /usr/bin/qemu-arm-static /usr/bin
|
|
|
|
|
{%- elif CONFIGURED_ARCH == "arm64" and CROSS_BUILD_ENVIRON == "y" %}
|
|
|
|
|
FROM {{ prefix }}multiarch/qemu-user-static:x86_64-aarch64-6.1.0-8 as qemu
|
|
|
|
|
FROM {{ prefix }}debian:bullseye
|
|
|
|
|
COPY --from=qemu /usr/bin/qemu-aarch64-static /usr/bin
|
2021-06-22 10:33:42 -05:00
|
|
|
|
{%- else -%}
|
2022-03-14 05:09:20 -05:00
|
|
|
|
FROM {{ prefix }}debian:bullseye
|
2021-06-22 10:33:42 -05:00
|
|
|
|
{%- endif %}
|
|
|
|
|
|
|
|
|
|
MAINTAINER gulv@microsoft.com
|
|
|
|
|
|
|
|
|
|
COPY ["no-check-valid-until", "/etc/apt/apt.conf.d/"]
|
2023-09-23 20:07:04 -05:00
|
|
|
|
COPY ["apt-retries-count", "/etc/apt/apt.conf.d"]
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
2022-11-08 18:09:53 -06:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON != "y" %}
|
|
|
|
|
COPY ["sources.list.{{ CONFIGURED_ARCH }}", "/etc/apt/sources.list"]
|
|
|
|
|
{%- else %}
|
|
|
|
|
COPY ["sources.list.amd64", "/etc/apt/sources.list"]
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" %}
|
|
|
|
|
ARG arch=armhf
|
|
|
|
|
ARG gcc_arch=arm-linux-gnueabihf
|
|
|
|
|
ARG PYTHON_CROSS_PLATFORM=linux_armv7l
|
|
|
|
|
{%- elif CONFIGURED_ARCH == "arm64" %}
|
|
|
|
|
ARG arch=arm64
|
|
|
|
|
ARG gcc_arch=aarch64-linux-gnu
|
|
|
|
|
ARG PYTHON_CROSS_PLATFORM=linux_aarch64
|
|
|
|
|
{%- endif %}
|
|
|
|
|
|
|
|
|
|
RUN dpkg --add-architecture $arch
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN apt-get update && apt-get install -y eatmydata
|
|
|
|
|
RUN eatmydata apt-get install -y crossbuild-essential-$arch
|
|
|
|
|
RUN eatmydata apt-get install -y gcc-$gcc_arch
|
2022-07-21 16:15:16 -05:00
|
|
|
|
|
|
|
|
|
RUN apt-mark hold g++-$gcc_arch
|
|
|
|
|
RUN apt-mark hold g++-10-$gcc_arch
|
|
|
|
|
RUN apt-mark hold gcc-$gcc_arch
|
|
|
|
|
RUN apt-mark hold gcc-10-$gcc_arch
|
|
|
|
|
|
|
|
|
|
ARG CROSS_CC=${gcc_arch}-gcc
|
|
|
|
|
ARG CROSS_CXX=${gcc_arch}-g++
|
2021-06-22 10:33:42 -05:00
|
|
|
|
{%- endif %}
|
|
|
|
|
|
|
|
|
|
## Make apt-get non-interactive
|
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON == "y" %}
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y python3 python3-pip
|
2023-05-24 11:25:12 -05:00
|
|
|
|
RUN apt-get install -y python3-minimal:$arch python3.9:$arch python3:$arch python3-dev:$arch python3-setuptools:$arch
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN apt-get download python3-distutils && eatmydata dpkg --force-all -i python3-distutils*
|
|
|
|
|
RUN apt-get download python3-pip && eatmydata dpkg --force-all -i python3-pip*
|
2022-07-21 16:15:16 -05:00
|
|
|
|
RUN which pip3 && pip3 install enum34
|
|
|
|
|
RUN pip3 install virtualenv
|
|
|
|
|
|
|
|
|
|
# Create target arm python3 virtual environments with all required packages installed
|
|
|
|
|
RUN mkdir /python_virtualenv
|
|
|
|
|
RUN cd /python_virtualenv && python3 -m virtualenv --copies -p /usr/bin/python3 env3
|
|
|
|
|
|
2023-05-24 11:25:12 -05:00
|
|
|
|
RUN PATH=/python_virtualenv/env3/bin/:$PATH pip3 install setuptools==49.6.00 wheel==0.35.1 fastentrypoints pytest pytest-cov pytest-runner==5.2 nose==1.3.7 mockredispy==2.9.3 mock==3.0.5 PyYAML==5.4.1 redis==3.5.3 pexpect==4.8.0 Pympler==0.8 parameterized natsort==6.2.1 MarkupSafe==2.0.1 Jinja2==3.0.3 click tabulate netaddr netifaces pyroute2 pyfakefs sphinx && ln -s /python_virtualenv/env3/bin/pytest /python_virtualenv/env3/bin/pytest-3
|
2022-07-21 16:15:16 -05:00
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get --fix-broken install -y
|
|
|
|
|
RUN LIBPYTHON3_DEPS="`apt-cache depends libpython3-dev:$arch |grep Depends|awk {'print \$2;'}|tr "\n" " "`" && eatmydata apt-get install -y libpython2.7-dev:$arch $LIBPYTHON3_DEPS libxml2-dev:$arch libxslt-dev:$arch libssl-dev:$arch libz-dev:$arch
|
2022-07-21 16:15:16 -05:00
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y swig libssl-dev
|
2022-07-21 16:15:16 -05:00
|
|
|
|
|
|
|
|
|
RUN PATH=/python_virtualenv/env3/bin/:$PATH python3 -m pip install pyang==2.4.0
|
|
|
|
|
RUN PATH=/python_virtualenv/env3/bin/:$PATH python3 -m pip install pyangbind==0.8.1
|
|
|
|
|
RUN PATH=/python_virtualenv/env3/bin/:$PATH python3 -m pip uninstall -y enum34
|
|
|
|
|
RUN PATH=/python_virtualenv/env3/bin/:$PATH pip3 install --force-reinstall --no-cache-dir coverage
|
|
|
|
|
{%- endif %}
|
|
|
|
|
|
2023-11-16 01:58:39 -06:00
|
|
|
|
{%- if CONFIGURED_ARCH == "arm64" and MULTIARCH_QEMU_ENVIRON == "y" %}
|
|
|
|
|
# multiarch/debian-debootstrap:arm64-bullseye is too old. It needs to install keys
|
|
|
|
|
RUN apt-get update || apt-get install -y gnupg
|
|
|
|
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9
|
|
|
|
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6ED0E7B82643E131
|
|
|
|
|
{%- endif %}
|
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN apt-get update && apt-get install -y eatmydata && eatmydata apt-get install -y \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
apt-utils \
|
|
|
|
|
default-jre-headless \
|
|
|
|
|
openssh-server \
|
|
|
|
|
curl \
|
|
|
|
|
wget \
|
|
|
|
|
unzip \
|
2022-12-17 16:38:31 -06:00
|
|
|
|
{{ GZ_COMPRESS_PROGRAM }} \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
git \
|
|
|
|
|
build-essential \
|
|
|
|
|
libtool \
|
|
|
|
|
lintian \
|
|
|
|
|
sudo \
|
|
|
|
|
dh-make \
|
|
|
|
|
dh-exec \
|
|
|
|
|
kmod \
|
|
|
|
|
libtinyxml2-dev \
|
2022-05-10 04:45:28 -05:00
|
|
|
|
python-all \
|
|
|
|
|
python-dev \
|
|
|
|
|
python-setuptools \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
python3 \
|
|
|
|
|
python3-pip \
|
|
|
|
|
libncurses5-dev \
|
|
|
|
|
texinfo \
|
|
|
|
|
dh-autoreconf \
|
|
|
|
|
doxygen \
|
|
|
|
|
devscripts \
|
|
|
|
|
git-buildpackage \
|
|
|
|
|
perl-modules \
|
2022-05-10 04:45:28 -05:00
|
|
|
|
libclass-accessor-perl \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
libswitch-perl \
|
|
|
|
|
libzmq5 \
|
|
|
|
|
libzmq3-dev \
|
2022-08-04 12:17:38 -05:00
|
|
|
|
uuid-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
jq \
|
2021-07-23 11:28:36 -05:00
|
|
|
|
cron \
|
2023-09-06 21:23:07 -05:00
|
|
|
|
# For sonic-swss-common
|
|
|
|
|
nlohmann-json3-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For quagga build
|
|
|
|
|
libreadline-dev \
|
|
|
|
|
texlive-latex-base \
|
|
|
|
|
texlive-plain-generic \
|
|
|
|
|
texlive-fonts-recommended \
|
|
|
|
|
libpam0g-dev \
|
|
|
|
|
libpam-dev \
|
|
|
|
|
libcap-dev \
|
|
|
|
|
imagemagick \
|
|
|
|
|
ghostscript \
|
|
|
|
|
groff \
|
|
|
|
|
libpcre3-dev \
|
|
|
|
|
gawk \
|
|
|
|
|
chrpath \
|
|
|
|
|
# For frr build
|
|
|
|
|
libc-ares-dev \
|
|
|
|
|
libsnmp-dev \
|
|
|
|
|
libjson-c-dev \
|
|
|
|
|
libsystemd-dev \
|
|
|
|
|
python3-ipaddr \
|
|
|
|
|
libcmocka-dev \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
#{%- if CROSS_BUILD_ENVIRON != "y" %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
python3-all-dev \
|
|
|
|
|
python3-all-dbg \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
#{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
install-info \
|
|
|
|
|
logrotate \
|
|
|
|
|
# For libnl3 (local) build
|
|
|
|
|
cdbs \
|
|
|
|
|
# For SAI meta build
|
|
|
|
|
libxml-simple-perl \
|
|
|
|
|
graphviz \
|
|
|
|
|
aspell \
|
2022-08-24 03:53:54 -05:00
|
|
|
|
# For SAI meta rpc build - make rpc
|
|
|
|
|
libgetopt-long-descriptive-perl \
|
|
|
|
|
libconst-fast-perl \
|
|
|
|
|
libtemplate-perl \
|
|
|
|
|
libnamespace-autoclean-perl \
|
|
|
|
|
libmoose-perl \
|
|
|
|
|
libmoosex-aliases-perl \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For linux build
|
|
|
|
|
bc \
|
|
|
|
|
fakeroot \
|
|
|
|
|
build-essential \
|
|
|
|
|
devscripts \
|
|
|
|
|
quilt \
|
|
|
|
|
stgit \
|
2022-04-19 00:23:15 -05:00
|
|
|
|
sbsigntool \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For platform-modules build
|
|
|
|
|
module-assistant \
|
|
|
|
|
# For thrift build\
|
|
|
|
|
gem2deb \
|
|
|
|
|
libevent-dev \
|
|
|
|
|
libglib2.0-dev \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
#{%- if CROSS_BUILD_ENVIRON != "y" %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
python3-all-dev \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
#{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
python3-twisted \
|
|
|
|
|
phpunit \
|
|
|
|
|
libbit-vector-perl \
|
|
|
|
|
openjdk-11-jdk \
|
|
|
|
|
javahelper \
|
|
|
|
|
maven-debian-helper \
|
|
|
|
|
ant \
|
|
|
|
|
libhttpclient-java \
|
|
|
|
|
libslf4j-java \
|
|
|
|
|
libservlet3.1-java \
|
|
|
|
|
pkg-php-tools \
|
|
|
|
|
# For mellanox sdk build
|
|
|
|
|
libpcre3 \
|
|
|
|
|
libpcre3-dev \
|
|
|
|
|
byacc \
|
|
|
|
|
flex \
|
|
|
|
|
libglib2.0-dev \
|
|
|
|
|
bison \
|
|
|
|
|
expat \
|
|
|
|
|
libexpat1-dev \
|
|
|
|
|
dpatch \
|
|
|
|
|
libdb-dev \
|
|
|
|
|
libiptc-dev \
|
|
|
|
|
libxtables-dev \
|
2023-04-30 04:30:09 -05:00
|
|
|
|
libbpf-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For mellanox sai build
|
|
|
|
|
libtool-bin \
|
|
|
|
|
libxml2-dev \
|
|
|
|
|
# For BFN sdk build
|
|
|
|
|
libusb-1.0-0-dev \
|
2023-03-28 00:44:49 -05:00
|
|
|
|
libcurl4-openssl-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
libunwind8-dev \
|
|
|
|
|
telnet \
|
|
|
|
|
libc-ares2 \
|
|
|
|
|
libgoogle-perftools4 \
|
|
|
|
|
# For build image
|
|
|
|
|
cpio \
|
|
|
|
|
squashfs-tools \
|
|
|
|
|
zip \
|
|
|
|
|
# For broadcom sdk build
|
|
|
|
|
{%- if CONFIGURED_ARCH == "amd64" %}
|
|
|
|
|
linux-compiler-gcc-10-x86 \
|
|
|
|
|
{%- endif %}
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" and CROSS_BUILD_ENVIRON != "y" %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
linux-compiler-gcc-10-arm \
|
|
|
|
|
{%- endif %}
|
|
|
|
|
linux-kbuild-5.10 \
|
|
|
|
|
# teamd build
|
|
|
|
|
libdaemon-dev \
|
|
|
|
|
libdbus-1-dev \
|
|
|
|
|
libjansson-dev \
|
|
|
|
|
# For cavium sdk build
|
|
|
|
|
libpcap-dev \
|
|
|
|
|
dnsutils \
|
|
|
|
|
libusb-dev \
|
2023-03-13 16:32:34 -05:00
|
|
|
|
# For cisco sdk build
|
|
|
|
|
libgrpc++1 \
|
|
|
|
|
libabsl-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For debian image reconfiguration
|
|
|
|
|
augeas-tools \
|
|
|
|
|
# For p4 build
|
|
|
|
|
libyaml-dev \
|
|
|
|
|
libevent-dev \
|
|
|
|
|
libjudy-dev \
|
|
|
|
|
libedit-dev \
|
|
|
|
|
libnanomsg-dev \
|
|
|
|
|
python3-stdeb \
|
|
|
|
|
# For redis build
|
|
|
|
|
libjemalloc-dev \
|
|
|
|
|
liblua5.1-0-dev \
|
|
|
|
|
lua-bitop-dev \
|
|
|
|
|
lua-cjson-dev \
|
|
|
|
|
# For mft kernel module build
|
|
|
|
|
dkms \
|
|
|
|
|
# For Jenkins static analysis, unit testing and code coverage
|
|
|
|
|
cppcheck \
|
|
|
|
|
clang \
|
|
|
|
|
pylint \
|
|
|
|
|
python3-pytest \
|
2021-10-28 22:19:53 -05:00
|
|
|
|
python3-venv \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
gcovr \
|
|
|
|
|
python3-pytest-cov \
|
|
|
|
|
python3-pytest-cov \
|
|
|
|
|
python3-parse \
|
|
|
|
|
# For snmpd
|
|
|
|
|
default-libmysqlclient-dev \
|
|
|
|
|
libssl-dev \
|
|
|
|
|
libperl-dev \
|
|
|
|
|
libpci-dev \
|
|
|
|
|
libpci3 \
|
|
|
|
|
libsensors5 \
|
|
|
|
|
libsensors4-dev \
|
|
|
|
|
libwrap0-dev \
|
|
|
|
|
# For lldpd
|
|
|
|
|
debhelper \
|
|
|
|
|
autotools-dev \
|
|
|
|
|
libbsd-dev \
|
|
|
|
|
pkg-config \
|
|
|
|
|
check \
|
|
|
|
|
# For mpdecimal
|
|
|
|
|
docutils-common \
|
|
|
|
|
libjs-sphinxdoc \
|
|
|
|
|
libjs-underscore \
|
|
|
|
|
python3-docutils \
|
|
|
|
|
python3-jinja2 \
|
|
|
|
|
python3-markupsafe \
|
|
|
|
|
python3-pygments \
|
|
|
|
|
python3-roman \
|
|
|
|
|
python3-sphinx \
|
|
|
|
|
sphinx-common \
|
|
|
|
|
python3-sphinx \
|
|
|
|
|
# For sonic config engine testing
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON != "y" %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
python3-dev \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" or CONFIGURED_ARCH == "arm64" %}
|
|
|
|
|
libxslt-dev \
|
|
|
|
|
{%- endif %}
|
|
|
|
|
# For lockfile
|
|
|
|
|
procmail \
|
|
|
|
|
# For gtest
|
|
|
|
|
libgtest-dev \
|
|
|
|
|
cmake \
|
2021-10-28 14:14:21 -05:00
|
|
|
|
# For gmock
|
|
|
|
|
libgmock-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For pam_tacplus build
|
|
|
|
|
autoconf-archive \
|
|
|
|
|
# For iproute2
|
|
|
|
|
cm-super-minimal \
|
|
|
|
|
libatm1-dev \
|
Upgrade docker-sonic-vs and docker-syncd-vs to Bullseye (#13294)
* Upgrade docker-sonic-vs and docker-syncd-vs to Bullseye
Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
* iproute2: Force a new version and timestamp to be used for the package
There is an issue with Docker's overlay2 storage driver when not using
native diffs (and thus falling back to naive diff mode), which is the
case in the CI builds. The way the naive diff mode detects changes is by
comparing the file size and comparing the timestamps (specifically, I
believe it's the modification timestamp), and if there's a change there,
then it's considered a change that needs to be recorded as part of that
layer.
The problem is that with the code being added in the patch, the file
size remains the same, and the timestamp of binary files appear to be
the same timestamp as the changelog entry (likely for reproducible build
purposes). The file size remains the same likely due to extra padding
within the file introduced by relro. Because of this, Docker doesn't
detect this file has changed, and doesn't save the new file as part of
this layer.
To work around this, create a new changelog entry (with a new version as
well) with a new timestamp. This will result in the binary files having
a different timestamp, and thus will get saved by Docker as part of that
layer.
Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
---------
Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
2023-03-19 23:14:27 -05:00
|
|
|
|
libbpf-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
libelf-dev \
|
|
|
|
|
libmnl-dev \
|
|
|
|
|
libselinux1-dev \
|
|
|
|
|
linuxdoc-tools \
|
|
|
|
|
lynx \
|
|
|
|
|
texlive-latex-extra \
|
|
|
|
|
texlive-latex-recommended \
|
|
|
|
|
iproute2 \
|
|
|
|
|
# For bash
|
|
|
|
|
texi2html \
|
2021-10-11 02:20:51 -05:00
|
|
|
|
sharutils \
|
|
|
|
|
locales \
|
|
|
|
|
time \
|
|
|
|
|
man2html-base \
|
|
|
|
|
libcunit1 \
|
|
|
|
|
libcunit1-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For initramfs
|
|
|
|
|
shellcheck \
|
|
|
|
|
bash-completion \
|
|
|
|
|
{%- if CONFIGURED_ARCH == "amd64" %}
|
|
|
|
|
# For sonic vs image build
|
|
|
|
|
dosfstools \
|
|
|
|
|
qemu-kvm \
|
|
|
|
|
libvirt-clients \
|
|
|
|
|
{%- endif %}
|
|
|
|
|
# For ntp
|
|
|
|
|
autogen \
|
|
|
|
|
libopts25-dev \
|
|
|
|
|
pps-tools \
|
|
|
|
|
dh-apparmor \
|
|
|
|
|
# For lm-sensors
|
|
|
|
|
librrd8 \
|
|
|
|
|
librrd-dev \
|
|
|
|
|
rrdtool \
|
|
|
|
|
# For kdump-tools
|
|
|
|
|
liblzo2-dev \
|
|
|
|
|
# For iptables
|
|
|
|
|
libnetfilter-conntrack-dev \
|
|
|
|
|
libnftnl-dev \
|
|
|
|
|
# For SAI3.7
|
|
|
|
|
xxd \
|
|
|
|
|
# For DHCP Monitor tool
|
|
|
|
|
libexplain-dev \
|
|
|
|
|
libevent-dev \
|
2023-09-05 12:16:39 -05:00
|
|
|
|
libjsoncpp-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For libyang
|
|
|
|
|
swig \
|
|
|
|
|
# For build dtb
|
|
|
|
|
device-tree-compiler \
|
|
|
|
|
# For sonic-mgmt-framework
|
|
|
|
|
autoconf \
|
|
|
|
|
m4 \
|
|
|
|
|
libxml2-utils \
|
|
|
|
|
xsltproc \
|
|
|
|
|
python3-lxml \
|
|
|
|
|
libexpat1-dev \
|
2023-03-28 00:44:49 -05:00
|
|
|
|
libcurl4 \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
libcjson-dev \
|
|
|
|
|
# For WPA supplication
|
|
|
|
|
qtbase5-dev \
|
|
|
|
|
aspell-en \
|
|
|
|
|
libssl-dev \
|
|
|
|
|
dbus \
|
|
|
|
|
libdbus-1-dev \
|
|
|
|
|
libdbus-glib-1-2 \
|
|
|
|
|
libdbus-glib-1-dev \
|
|
|
|
|
libreadline-dev \
|
|
|
|
|
libncurses5-dev \
|
|
|
|
|
libpcsclite-dev \
|
|
|
|
|
docbook-to-man \
|
|
|
|
|
docbook-utils \
|
|
|
|
|
# For kdump-tools
|
|
|
|
|
libbz2-dev \
|
|
|
|
|
# For linkmgrd
|
2022-01-18 17:11:36 -06:00
|
|
|
|
libboost-dev \
|
|
|
|
|
libboost-program-options-dev \
|
|
|
|
|
libboost-system-dev \
|
2022-10-21 09:09:28 -05:00
|
|
|
|
libboost-serialization1.74-dev \
|
2022-01-18 17:11:36 -06:00
|
|
|
|
libboost-thread-dev \
|
|
|
|
|
libboost-atomic-dev \
|
|
|
|
|
libboost-chrono-dev \
|
|
|
|
|
libboost-container-dev \
|
|
|
|
|
libboost-context-dev \
|
|
|
|
|
libboost-contract-dev \
|
|
|
|
|
libboost-coroutine-dev \
|
|
|
|
|
libboost-date-time-dev \
|
|
|
|
|
libboost-fiber-dev \
|
|
|
|
|
libboost-filesystem-dev \
|
|
|
|
|
libboost-graph-parallel-dev \
|
|
|
|
|
libboost-log-dev \
|
|
|
|
|
libboost-regex-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
googletest \
|
|
|
|
|
libgtest-dev \
|
2022-04-13 19:59:54 -05:00
|
|
|
|
libgmock-dev \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
libgcc-10-dev \
|
|
|
|
|
# For sonic-host-services build
|
|
|
|
|
libcairo2-dev \
|
|
|
|
|
libdbus-1-dev \
|
|
|
|
|
libgirepository1.0-dev \
|
|
|
|
|
libsystemd-dev \
|
2021-11-30 21:50:09 -06:00
|
|
|
|
pkg-config \
|
2023-09-06 18:23:34 -05:00
|
|
|
|
# For sonic-swss-common build
|
|
|
|
|
libhiredis-dev \
|
2021-11-30 21:50:09 -06:00
|
|
|
|
# For audisp-tacplus
|
|
|
|
|
libauparse-dev \
|
2023-07-05 11:59:35 -05:00
|
|
|
|
auditd \
|
|
|
|
|
# For protobuf
|
|
|
|
|
dh-elpa \
|
|
|
|
|
xmlto \
|
|
|
|
|
rake-compiler \
|
|
|
|
|
default-jdk \
|
|
|
|
|
libgoogle-gson-java
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON == "y" %}
|
|
|
|
|
# Arm vs. amd64 versions conflict - remove amd64 packages
|
|
|
|
|
RUN apt-get remove -y libnl-3-200
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y libpcre3:$arch
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- endif %}
|
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get -y build-dep openssh
|
2021-08-10 03:37:19 -05:00
|
|
|
|
|
2021-10-25 17:36:55 -05:00
|
|
|
|
# Build fix for ARM64 and ARMHF /etc/debian_version
|
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" or CONFIGURED_ARCH == "arm64" %}
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt upgrade -y base-files libc-bin=$(dpkg-query -W -f '${Version}' libc-bin)
|
2021-10-25 17:36:55 -05:00
|
|
|
|
{%- endif %}
|
|
|
|
|
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# Build fix for ARMHF bullseye libsairedis
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" and MULTIARCH_QEMU_ENVIRON == "y" %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# Install doxygen build dependency packages
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt install -y libxapian-dev yui-compressor texlive-extra-utils \
|
2021-09-06 01:02:30 -05:00
|
|
|
|
texlive-font-utils rdfind llvm-11-dev libclang-11-dev sassc faketime mat2
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# Update doxygen with 64bit file offset patch
|
2021-09-06 01:02:30 -05:00
|
|
|
|
RUN dget -u http://deb.debian.org/debian/pool/main/d/doxygen/doxygen_1.9.1-2.dsc && \
|
|
|
|
|
cd doxygen-1.9.1 && \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
sed -i '56 a add_definitions(-D_FILE_OFFSET_BITS=64)' CMakeLists.txt && \
|
|
|
|
|
DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage -us -uc -b && \
|
|
|
|
|
cd .. && \
|
2023-09-23 03:57:34 -05:00
|
|
|
|
eatmydata dpkg -i ./doxygen_1.9.1-2_armhf.deb && \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
rm -fr doxygen*
|
|
|
|
|
|
|
|
|
|
# Aspell is unable to locate the language dictionaries.
|
|
|
|
|
# Re-installing aspell-en dictionary to fix it.
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install --reinstall -y aspell-en
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# workaround because of https://bugs.launchpad.net/qemu/+bug/1805913, just disable aspell
|
2021-11-13 12:48:58 -06:00
|
|
|
|
# Issue now being tracked here - https://gitlab.com/qemu-project/qemu/-/issues/263
|
2021-06-22 10:33:42 -05:00
|
|
|
|
RUN cp /bin/true /usr/bin/aspell
|
|
|
|
|
{%- endif %}
|
|
|
|
|
|
|
|
|
|
## Config dpkg
|
|
|
|
|
## install the configuration file if it’s currently missing
|
|
|
|
|
RUN sudo augtool --autosave "set /files/etc/dpkg/dpkg.cfg/force-confmiss"
|
|
|
|
|
## combined with confold: overwrite configuration files that you have not modified
|
|
|
|
|
RUN sudo augtool --autosave "set /files/etc/dpkg/dpkg.cfg/force-confdef"
|
|
|
|
|
## do not modify the current configuration file, the new version is installed with a .dpkg-dist suffix
|
|
|
|
|
RUN sudo augtool --autosave "set /files/etc/dpkg/dpkg.cfg/force-confold"
|
|
|
|
|
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON != "y" %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For linux build
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get -y build-dep linux
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- else %}
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y kernel-wedge
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# For gobgp and telemetry build
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y golang-1.15 && ln -s /usr/lib/go-1.15 /usr/local/go
|
2023-07-13 10:00:38 -05:00
|
|
|
|
{%- if INCLUDE_FIPS == "y" %}
|
2022-05-05 18:21:30 -05:00
|
|
|
|
RUN wget -O golang-go.deb 'https://sonicstorage.blob.core.windows.net/public/fips/bullseye/0.1/{{ CONFIGURED_ARCH }}/golang-1.15-go_1.15.15-1~deb11u4%2Bfips_{{ CONFIGURED_ARCH }}.deb' \
|
|
|
|
|
&& wget -O golang-src.deb 'https://sonicstorage.blob.core.windows.net/public/fips/bullseye/0.1/{{ CONFIGURED_ARCH }}/golang-1.15-src_1.15.15-1~deb11u4%2Bfips_{{ CONFIGURED_ARCH }}.deb' \
|
2023-09-23 03:57:34 -05:00
|
|
|
|
&& eatmydata dpkg -i golang-go.deb golang-src.deb \
|
2022-05-05 18:21:30 -05:00
|
|
|
|
&& ln -sf /usr/lib/go-1.15 /usr/local/go \
|
|
|
|
|
&& rm golang-go.deb golang-src.deb
|
2021-06-22 10:33:42 -05:00
|
|
|
|
{%- endif %}
|
|
|
|
|
|
|
|
|
|
RUN pip3 install --upgrade pip
|
|
|
|
|
RUN apt-get purge -y python3-pip python3-yaml
|
|
|
|
|
|
|
|
|
|
# For building Python packages
|
|
|
|
|
RUN pip3 install setuptools==49.6.00
|
2023-03-20 01:15:45 -05:00
|
|
|
|
RUN pip3 install wheel==0.38.1
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" %}
|
|
|
|
|
# Allow only manylinux wheels on armhf, to ensure that binaries/libraries work correctly on armhf
|
|
|
|
|
COPY ["disable-non-manylinux.patch", "/"]
|
|
|
|
|
{%- if CROSS_BUILD_ENVIRON == "y" %}
|
|
|
|
|
RUN patch -p1 -i /disable-non-manylinux.patch /python_virtualenv/env3/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py
|
|
|
|
|
{%- else %}
|
|
|
|
|
RUN patch -p1 -i /disable-non-manylinux.patch /usr/local/lib/python3.9/dist-packages/pip/_vendor/packaging/tags.py
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- endif %}
|
|
|
|
|
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For building sonic-utilities
|
2021-07-23 11:28:36 -05:00
|
|
|
|
RUN pip3 install fastentrypoints mock
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
2023-10-04 18:07:51 -05:00
|
|
|
|
# For building sonic_ycabled
|
|
|
|
|
# Note: upstream build breaks with old version of setuptools
|
|
|
|
|
# ref: https://github.com/grpc/grpc/issues/34569
|
|
|
|
|
RUN pip3 install grpcio==1.58.0 grpcio-tools==1.58.0
|
|
|
|
|
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For running Python unit tests
|
|
|
|
|
RUN pip3 install pytest-runner==5.2
|
|
|
|
|
RUN pip3 install nose==1.3.7
|
|
|
|
|
RUN pip3 install mockredispy==2.9.3
|
|
|
|
|
|
2023-03-20 01:15:45 -05:00
|
|
|
|
# Fix CVE-2021-23437, need to build and install libjpeg-dev for armhf for pillow 9.4.0
|
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" %}
|
|
|
|
|
RUN TMP_DIR=$(mktemp -d) && \
|
|
|
|
|
cd $TMP_DIR && \
|
2023-09-23 03:57:34 -05:00
|
|
|
|
eatmydata apt-get install -y nasm && \
|
2023-03-20 01:15:45 -05:00
|
|
|
|
apt-get source libjpeg-turbo && \
|
|
|
|
|
cd $(ls -d libjpeg-turbo*/) && \
|
|
|
|
|
dpkg-buildpackage -rfakeroot -b -us -uc > $TMP_DIR/libjpeg-dev.log && \
|
2023-09-23 03:57:34 -05:00
|
|
|
|
eatmydata dpkg -i $TMP_DIR/libjpeg*-dev*.deb && \
|
2023-03-20 01:15:45 -05:00
|
|
|
|
rm -rf $TMP_DIR
|
|
|
|
|
{%- endif %}
|
|
|
|
|
RUN pip3 install pillow==9.4.0
|
|
|
|
|
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# For p4 build
|
|
|
|
|
RUN pip3 install \
|
|
|
|
|
ctypesgen==1.0.2 \
|
|
|
|
|
crc16
|
|
|
|
|
|
|
|
|
|
# For sonic config engine testing
|
|
|
|
|
# Install pyangbind here, outside sonic-config-engine dependencies, as pyangbind causes enum34 to be installed.
|
|
|
|
|
# enum34 causes Python 're' package to not work properly as it redefines an incompatible enum.py module
|
|
|
|
|
# https://github.com/robshakir/pyangbind/issues/232
|
|
|
|
|
RUN pip3 install pyangbind==0.8.1
|
|
|
|
|
RUN pip3 uninstall -y enum34
|
|
|
|
|
|
|
|
|
|
# For templating
|
|
|
|
|
RUN pip3 install j2cli==0.3.10
|
|
|
|
|
|
|
|
|
|
# For sonic-mgmt-framework
|
2023-07-18 17:33:49 -05:00
|
|
|
|
# The option --no-build-isolation can be removed when upgrading PyYAML to 6.0.1
|
|
|
|
|
RUN pip3 install "PyYAML==5.4.1" --no-build-isolation
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON != "y" %}
|
2023-03-20 01:15:45 -05:00
|
|
|
|
RUN pip3 install "lxml==4.9.1"
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# For sonic-platform-common testing
|
2022-01-09 20:24:07 -06:00
|
|
|
|
RUN pip3 install redis
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# For vs image build
|
|
|
|
|
RUN pip3 install pexpect==4.8.0
|
|
|
|
|
|
|
|
|
|
# For sonic-swss-common testing
|
|
|
|
|
RUN pip3 install Pympler==0.8
|
|
|
|
|
|
|
|
|
|
# For sonic_yang_model build
|
|
|
|
|
RUN pip3 install pyang==2.4.0
|
|
|
|
|
|
|
|
|
|
# For mgmt-framework build
|
|
|
|
|
RUN pip3 install mmh3==2.5.1
|
|
|
|
|
|
|
|
|
|
RUN pip3 install parameterized==0.8.1
|
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y xsltproc
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# Install dependencies for isc-dhcp-relay build
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get -y build-dep isc-dhcp
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# Install vim
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y vim
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
# Install rsyslog
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y rsyslog
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON == "y" %}
|
|
|
|
|
RUN cd /usr/src/gtest && CXX=$CROSS_CXX CC=$CROSS_CC cmake . && make -C /usr/src/gtest
|
|
|
|
|
{%- else %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
RUN cd /usr/src/gtest && cmake . && make -C /usr/src/gtest
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
|
|
|
|
RUN mkdir /var/run/sshd
|
|
|
|
|
EXPOSE 22
|
|
|
|
|
|
2022-01-18 17:11:36 -06:00
|
|
|
|
# Install dependencies for dhcp relay test
|
|
|
|
|
RUN pip3 install parameterized==0.8.1
|
|
|
|
|
RUN pip3 install pyfakefs
|
|
|
|
|
|
2023-07-06 16:44:29 -05:00
|
|
|
|
# Install docker engine 24 inside docker and enable experimental feature
|
2021-06-22 10:33:42 -05:00
|
|
|
|
RUN apt-get update
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y \
|
2021-06-22 10:33:42 -05:00
|
|
|
|
apt-transport-https \
|
|
|
|
|
ca-certificates \
|
|
|
|
|
curl \
|
|
|
|
|
gnupg2 \
|
|
|
|
|
software-properties-common
|
|
|
|
|
{%- if CONFIGURED_ARCH == "armhf" %}
|
|
|
|
|
RUN update-ca-certificates --fresh
|
|
|
|
|
{%- endif %}
|
|
|
|
|
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
|
|
|
|
|
RUN add-apt-repository \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON == "y" %}
|
|
|
|
|
"deb https://download.docker.com/linux/debian \
|
|
|
|
|
{%- else %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
"deb [arch={{ CONFIGURED_ARCH }}] https://download.docker.com/linux/debian \
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- endif %}
|
2021-06-22 10:33:42 -05:00
|
|
|
|
$(lsb_release -cs) \
|
|
|
|
|
stable"
|
|
|
|
|
RUN apt-get update
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y docker-ce=5:24.0.2-1~debian.11~bullseye docker-ce-cli=5:24.0.2-1~debian.11~bullseye containerd.io=1.6.21-1 docker-buildx-plugin=0.10.5-1~debian.11~bullseye docker-compose-plugin=2.18.1-1~debian.11~bullseye
|
2021-06-22 10:33:42 -05:00
|
|
|
|
RUN echo "DOCKER_OPTS=\"--experimental --storage-driver=vfs {{ DOCKER_EXTRA_OPTS }}\"" >> /etc/default/docker
|
|
|
|
|
RUN update-alternatives --set iptables /usr/sbin/iptables-legacy
|
|
|
|
|
|
|
|
|
|
# Install m2crypto package, needed by SWI tools
|
|
|
|
|
RUN pip3 install m2crypto==0.36.0
|
|
|
|
|
|
|
|
|
|
# Install swi tools
|
|
|
|
|
RUN pip3 install git+https://github.com/aristanetworks/swi-tools.git@bead66bf261770237f7dd21ace3774ba04a017e9
|
|
|
|
|
|
|
|
|
|
{% if CONFIGURED_ARCH != "amd64" -%}
|
|
|
|
|
# Install node.js for azure pipeline
|
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y nodejs
|
2021-06-22 10:33:42 -05:00
|
|
|
|
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{%- if CROSS_BUILD_ENVIRON == "y" %}
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y rsync dh-python
|
2022-07-21 16:15:16 -05:00
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt-get install -y libelf-dev:$arch libdw-dev:$arch libbz2-dev:$arch liblzo2-dev:$arch libedit-dev:$arch libevent-dev:$arch libopts25-dev:$arch libssl-dev:$arch pps-tools:$arch libpam-cap:$arch libcap-dev:$arch libpam0g-dev:$arch libaudit-dev:$arch libgtk-3-dev:$arch libkrb5-dev:$arch libsystemd-dev:$arch libwrap0-dev:$arch libkrb5-dev:$arch libboost1.74-dev:$arch libboost-dev:$arch libzmq5:$arch libzmq3-dev:$arch libdaemon-dev:$arch libjansson-dev:$arch libmnl-dev:$arch libsensors5:$arch libsensors4-dev:$arch libperl-dev:$arch libmariadb-dev:$arch libmariadb-dev-compat:$arch libpci-dev:$arch libjson-c-dev:$arch libreadline-dev:$arch librtr-dev:$arch librrd-dev:$arch libnetfilter-conntrack-dev:$arch libnetfilter-conntrack3:$arch libnfnetlink-dev:$arch libnftnl-dev:$arch libldap2-dev:$arch libbind-export-dev:$arch check:$arch libboost-atomic-dev:$arch libboost-test-dev:$arch libglib2.0-dev:$arch libexplain-dev:$arch libc-ares-dev:$arch libiptc0:$arch libxtables12:$arch libatm1-dev:$arch libbpf-dev:$arch libdb-dev:$arch pkg-config:$arch libnghttp2-14:$arch librtmp1:$arch libssh2-1:$arch libcjson1:$arch libcjson-dev:$arch libcurl4-openssl-dev:$arch libboost-thread1.74-dev:$arch libboost-thread-dev:$arch libboost-system1.74-dev:$arch libboost-system-dev:$arch libgtest-dev:$arch libgmock-dev:$arch libfido2-dev:$arch libcunit1:$arch libcunit1-dev:$arch libauparse-dev:$arch libnetsnmptrapd40:$arch qtbase5-dev:$arch libboost-log-dev:$arch libboost-filesystem-dev:$arch libboost-program-options-dev:$arch
|
2022-07-21 16:15:16 -05:00
|
|
|
|
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN apt-get download libgirepository1.0-dev:$arch && eatmydata dpkg --force-all -i libgirepository1.0-dev*
|
2022-07-21 16:15:16 -05:00
|
|
|
|
RUN PATH=/python_virtualenv/env3/bin/:$PATH pip3 install pycairo
|
|
|
|
|
|
|
|
|
|
# Install libpcsclite-dev for wpasupplicant using download because regular install removes amd64 python package
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN apt-get download libpcsclite1:$arch && eatmydata dpkg --force-all -i libpcsclite1* && apt-get download libpcsclite-dev:$arch && eatmydata dpkg --force-all -i libpcsclite-dev*
|
2022-07-21 16:15:16 -05:00
|
|
|
|
# Install python3-dev for frr (/usr/bin/python3-config for $arch) using download because regular install removes amd64 python package
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN apt-get download python3.9-dev:$arch && apt-get download python3-dev:$arch && eatmydata dpkg --force-all -i python3*-dev*
|
2022-07-21 16:15:16 -05:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
2021-06-22 10:33:42 -05:00
|
|
|
|
# Tell azure pipeline to use node.js in the docker
|
|
|
|
|
LABEL "com.azure.dev.pipelines.agent.handler.node.path"="/usr/bin/node"
|
|
|
|
|
{% endif -%}
|
2021-12-07 13:11:25 -06:00
|
|
|
|
|
|
|
|
|
# Install Bazel build system (amd64 and arm64 architectures are supported using this method)
|
|
|
|
|
# TODO(PINS): Remove once pre-build Bazel binaries are available for armhf (armv7l)
|
|
|
|
|
{%- if CONFIGURED_ARCH == "amd64" or CONFIGURED_ARCH == "arm64" %}
|
|
|
|
|
ARG bazelisk_url=https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-{{ CONFIGURED_ARCH }}
|
|
|
|
|
RUN curl -fsSL -o /usr/local/bin/bazel ${bazelisk_url} && chmod 755 /usr/local/bin/bazel
|
|
|
|
|
# Bazel requires "python"
|
|
|
|
|
# TODO(PINS): remove when Bazel is okay with "python3" binary name
|
2023-09-23 03:57:34 -05:00
|
|
|
|
RUN eatmydata apt install -y python-is-python3
|
2021-12-07 13:11:25 -06:00
|
|
|
|
{% endif -%}
|