f4fdf310b9
* [build] Fix the snmp docker build error. (#7452) Issue is get_pip.py is moved to pip 21.1 (https://github.com/pypa/get-pip/commits/main) which is not compatible with 3.6. Issue of pip itself is fixed as part of 21.1.1 in pip community (pypa/pip#9835). However get-pip.py is still not updated to latest pip. Also get.pip.py does not support python 3.6 version explicitly (pypa/get-pip#88) Step 15/29 : RUN curl https://bootstrap.pypa.io/get-pip.py | python3.6 ---> Running in bece31f49267 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 1891k 100 1891k 0 0 9564k 0 --:--:-- --:--:-- --:--:-- 9600k Traceback (most recent call last): File "<stdin>", line 24298, in <module> File "<stdin>", line 139, in main File "<stdin>", line 115, in bootstrap File "<stdin>", line 96, in monkeypatch_for_cert File "/tmp/tmp5fnxrz0a/pip.zip/pip/_internal/commands/__init__.py", line 9, in <module> File "/tmp/tmp5fnxrz0a/pip.zip/pip/_internal/cli/base_command.py", line 12, in <module> File "/tmp/tmp5fnxrz0a/pip.zip/pip/_internal/cli/cmdoptions.py", line 30, in <module> File "/tmp/tmp5fnxrz0a/pip.zip/pip/_internal/utils/hashes.py", line 2, in <module> ImportError: cannot import name 'NoReturn' The command '/bin/sh -c curl https://bootstrap.pypa.io/get-pip.py | python3.6' returned a non-zero code: 1 How I did: Got the file from https://github.com/pypa/get-pip/tree/21.0 and added to the buildimage pin pip to the previous release 21.0.1. (Similar is done in other public repos eg: grpc/grpc-java#8115) Signed-off-by: Abhishek Dosi <abdosi@microsoft.com>
80 lines
2.7 KiB
Django/Jinja
80 lines
2.7 KiB
Django/Jinja
FROM docker-config-engine
|
|
|
|
ARG docker_container_name
|
|
RUN [ -f /etc/rsyslog.conf ] && sed -ri "s/%syslogtag%/$docker_container_name#%syslogtag%/;" /etc/rsyslog.conf
|
|
|
|
# Enable -O for all Python calls
|
|
ENV PYTHONOPTIMIZE 1
|
|
|
|
# Make apt-get non-interactive
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Update apt's cache of available packages
|
|
RUN apt-get update
|
|
|
|
# Install curl so we can download and install pip later
|
|
# Also install major root CA certificates for curl to reference
|
|
RUN apt-get install -y curl ca-certificates
|
|
|
|
# Install gcc which is required for installing hiredis
|
|
RUN apt-get install -y gcc make ipmitool
|
|
|
|
{% if docker_snmp_sv2_debs.strip() -%}
|
|
# Copy locally-built Debian package dependencies
|
|
{%- for deb in docker_snmp_sv2_debs.split(' ') %}
|
|
COPY debs/{{ deb }} /debs/
|
|
{%- endfor %}
|
|
|
|
# Install locally-built Debian packages and implicitly install their dependencies
|
|
{%- for deb in docker_snmp_sv2_debs.split(' ') %}
|
|
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; }; dpkg_apt /debs/{{ deb }}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
|
|
# Install up-to-date version of pip
|
|
COPY ["get-pip.py", "/usr/bin/"]
|
|
RUN python3.6 /usr/bin/get-pip.py pip==21.0.1
|
|
|
|
# pin down setuptools version for issues to install sonic_ax_impl
|
|
# see https://github.com/Azure/sonic-buildimage/issues/5279
|
|
RUN python3.6 -m pip install setuptools==49.6.0
|
|
|
|
RUN python3.6 -m pip install --no-cache-dir hiredis
|
|
|
|
# Install pyyaml dependency for use by some plugins
|
|
RUN python3.6 -m pip install --no-cache-dir pyyaml
|
|
|
|
# Install smbus dependency for use by some plugins
|
|
RUN python3.6 -m pip install --no-cache-dir smbus
|
|
|
|
{% if docker_snmp_sv2_whls.strip() -%}
|
|
# Copy locally-built Python wheel dependencies
|
|
{%- for whl in docker_snmp_sv2_whls.split(' ') %}
|
|
COPY python-wheels/{{ whl }} /python-wheels/
|
|
{%- endfor %}
|
|
|
|
# Install locally-built Python wheel dependencies
|
|
{%- for whl in docker_snmp_sv2_whls.split(' ') %}
|
|
RUN pip install /python-wheels/{{ whl }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
|
|
RUN python3.6 -m sonic_ax_impl install
|
|
|
|
# Clean up
|
|
RUN apt-get -y purge libpython3.6-dev libpython3.6 curl gcc make
|
|
# Note: these packages should be removed with autoremove but actually not, so explicitly purged
|
|
RUN apt-get -y purge libldap-2.4-2 libsasl2-2 libsasl2-modules libsasl2-modules-db
|
|
RUN apt-get clean -y && apt-get autoclean -y && apt-get autoremove -y --purge
|
|
RUN find / | grep -E "__pycache__" | xargs rm -rf
|
|
RUN rm -rf /debs /python-wheels ~/.cache
|
|
|
|
COPY ["start.sh", "/usr/bin/"]
|
|
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
|
|
COPY ["*.j2", "/usr/share/sonic/templates/"]
|
|
|
|
# Although exposing ports is not needed for host net mode, keep it for possible bridge mode
|
|
EXPOSE 161/udp 162/udp
|
|
|
|
ENTRYPOINT ["/usr/bin/supervisord"]
|