b3424ea2e6
* Enable marvell-armhf saiserver docker Signed-off-by: zitingguo-ms <zitingguo@microsoft.com> * fix libsaithriift build env Signed-off-by: zitingguo-ms <zitingguo@microsoft.com> * fix thrift 014 dependent issue in armhf * fix build env Signed-off-by: zitingguo-ms <zitingguo@microsoft.com> * [sai_ptf]fix thrift armhf build in armhf buidl failed as no python command how add a checker for different python command, python/python3 and base on result use the right command verify container build * [Thrift_014[armhf]]Fix libboost_unit_test_framework.a not found during build Why error happen build thirft in armhf How fix this issue, add a soft link for the dependent file Verify Build pipeline Signed-off-by: richardyu-ms <richard.yu@microsoft.com> * add metadata dependence Signed-off-by: zitingguo-ms <zitingguo@microsoft.com> * change build pipeline Signed-off-by: zitingguo-ms <zitingguo@microsoft.com> --------- Signed-off-by: zitingguo-ms <zitingguo@microsoft.com> Signed-off-by: richardyu-ms <richard.yu@microsoft.com> Co-authored-by: richardyu-ms <richard.yu@microsoft.com>
58 lines
1.5 KiB
Django/Jinja
58 lines
1.5 KiB
Django/Jinja
{% from "dockers/dockerfile-macros.j2" import install_debian_packages %}
|
|
FROM docker-config-engine-bullseye-{{DOCKER_USERNAME}}:{{DOCKER_USERTAG}}
|
|
|
|
ARG docker_container_name
|
|
|
|
RUN [ -f /etc/rsyslog.conf ] && sed -ri "s/%syslogtag%/$docker_container_name#%syslogtag%/;" /etc/rsyslog.conf
|
|
|
|
## Make apt-get non-interactive
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install \
|
|
net-tools \
|
|
iputils-ping
|
|
|
|
RUN apt-get -y install libpcap-dev libxml2-dev python-dev swig libsensors4-dev nfs-common
|
|
|
|
## Pre-install the fundamental packages
|
|
RUN apt-get update \
|
|
&& apt-get -y install \
|
|
net-tools \
|
|
python3-pip \
|
|
python-setuptools \
|
|
build-essential \
|
|
libssl-dev \
|
|
libffi-dev \
|
|
python-dev \
|
|
wget \
|
|
cmake \
|
|
libqt5core5a \
|
|
libqt5network5 \
|
|
libboost-atomic1.74.0
|
|
|
|
COPY \
|
|
{% for deb in docker_saiserver_mrvl_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor -%}
|
|
debs/
|
|
|
|
RUN dpkg -i \
|
|
{% for deb in docker_saiserver_mrvl_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor %}
|
|
|
|
COPY ["start.sh", "saiserver_start.sh", "/usr/bin/"]
|
|
COPY ["files/syncd_init_common.sh", "/usr/bin/"]
|
|
RUN chmod +x /usr/bin/start.sh /usr/bin/saiserver_start.sh /usr/bin/syncd_init_common.sh
|
|
|
|
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
|
|
|
|
## Clean up
|
|
RUN apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
|
|
RUN rm -rf /debs
|
|
|
|
ENTRYPOINT ["/usr/local/bin/supervisord"]
|