2020-05-14 12:23:37 -05:00
|
|
|
{% from "dockers/dockerfile-macros.j2" import install_debian_packages, install_python3_wheels, copy_files %}
|
2022-08-19 13:20:17 -05:00
|
|
|
FROM docker-config-engine-bullseye-{{DOCKER_USERNAME}}:{{DOCKER_USERTAG}}
|
2016-10-25 20:52:13 -05:00
|
|
|
|
2018-06-25 12:48:42 -05:00
|
|
|
ARG docker_container_name
|
First cut image update for kubernetes support. (#5421)
* First cut image update for kubernetes support.
With this,
1) dockers dhcp_relay, lldp, pmon, radv, snmp, telemetry are enabled
for kube management
init_cfg.json configure set_owner as kube for these
2) Each docker's start.sh updated to call container_startup.py to register going up
As part of this call, it registers the current owner as local/kube and its version
The images are built with its version ingrained into image during build
3) Update all docker's bash script to call 'container start/stop/wait' instead of 'docker start/stop/wait'.
For all locally managed containers, it calls docker commands, hence no change for locally managed.
4) Introduced a new ctrmgrd service, that helps with transition between owners as kube & local and carry over any labels update from STATE-DB to API server
5) hostcfgd updated to handle owner change
6) Reboot scripts are updatd to tag kube running images as local, so upon reboot they run the same image.
7) Added kube_commands.py to handle all updates with Kubernetes API serrver -- dedicated for k8s interaction only.
2020-12-22 10:01:33 -06:00
|
|
|
ARG image_version
|
2018-06-25 12:48:42 -05:00
|
|
|
|
2018-05-02 13:46:21 -05:00
|
|
|
# Enable -O for all Python calls
|
2016-10-25 20:52:13 -05:00
|
|
|
ENV PYTHONOPTIMIZE 1
|
|
|
|
|
2018-05-02 13:46:21 -05:00
|
|
|
# Make apt-get non-interactive
|
2017-02-16 23:48:49 -06:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
First cut image update for kubernetes support. (#5421)
* First cut image update for kubernetes support.
With this,
1) dockers dhcp_relay, lldp, pmon, radv, snmp, telemetry are enabled
for kube management
init_cfg.json configure set_owner as kube for these
2) Each docker's start.sh updated to call container_startup.py to register going up
As part of this call, it registers the current owner as local/kube and its version
The images are built with its version ingrained into image during build
3) Update all docker's bash script to call 'container start/stop/wait' instead of 'docker start/stop/wait'.
For all locally managed containers, it calls docker commands, hence no change for locally managed.
4) Introduced a new ctrmgrd service, that helps with transition between owners as kube & local and carry over any labels update from STATE-DB to API server
5) hostcfgd updated to handle owner change
6) Reboot scripts are updatd to tag kube running images as local, so upon reboot they run the same image.
7) Added kube_commands.py to handle all updates with Kubernetes API serrver -- dedicated for k8s interaction only.
2020-12-22 10:01:33 -06:00
|
|
|
# Pass the image_version to container
|
|
|
|
ENV IMAGE_VERSION=$image_version
|
|
|
|
|
2018-05-02 13:46:21 -05:00
|
|
|
# Update apt's cache of available packages
|
2020-05-17 06:26:50 -05:00
|
|
|
# Install make/gcc which is required for installing hiredis
|
2019-06-22 13:26:23 -05:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y \
|
2020-05-14 12:23:37 -05:00
|
|
|
python3-dev \
|
2019-06-22 13:26:23 -05:00
|
|
|
gcc \
|
|
|
|
make \
|
2019-08-14 12:40:55 -05:00
|
|
|
ipmitool
|
2019-04-16 20:35:04 -05:00
|
|
|
|
2020-06-11 18:04:23 -05:00
|
|
|
{% if docker_snmp_debs.strip() -%}
|
2018-05-02 13:46:21 -05:00
|
|
|
# Copy locally-built Debian package dependencies
|
2020-06-11 18:04:23 -05:00
|
|
|
{{ copy_files("debs/", docker_snmp_debs.split(' '), "/debs/") }}
|
2018-05-02 13:46:21 -05:00
|
|
|
|
|
|
|
# Install locally-built Debian packages and implicitly install their dependencies
|
2020-06-11 18:04:23 -05:00
|
|
|
{{ install_debian_packages(docker_snmp_debs.split(' ')) }}
|
2018-05-02 13:46:21 -05:00
|
|
|
{%- endif %}
|
|
|
|
|
2019-07-26 00:06:41 -05:00
|
|
|
# Fix for hiredis compilation issues for ARM
|
2020-05-17 06:26:50 -05:00
|
|
|
# python will throw for missing locale
|
2019-07-26 00:06:41 -05:00
|
|
|
RUN apt-get install -y locales
|
|
|
|
RUN locale-gen "en_US.UTF-8"
|
|
|
|
RUN dpkg-reconfigure --frontend noninteractive locales
|
|
|
|
ENV LC_CTYPE=en_US.UTF-8
|
|
|
|
RUN sed -i '/^#.* en_US.* /s/^#//' /etc/locale.gen
|
|
|
|
RUN locale-gen
|
|
|
|
|
2020-12-25 23:29:25 -06:00
|
|
|
# Install dependencies used by some plugins
|
|
|
|
RUN pip3 install --no-cache-dir \
|
2019-06-22 13:26:23 -05:00
|
|
|
hiredis \
|
|
|
|
pyyaml \
|
|
|
|
smbus
|
2019-04-15 22:39:43 -05:00
|
|
|
|
2020-06-11 18:04:23 -05:00
|
|
|
{% if docker_snmp_whls.strip() -%}
|
2018-05-02 13:46:21 -05:00
|
|
|
# Copy locally-built Python wheel dependencies
|
2020-06-11 18:04:23 -05:00
|
|
|
{{ copy_files("python-wheels/", docker_snmp_whls.split(' '), "/python-wheels/") }}
|
2018-05-02 13:46:21 -05:00
|
|
|
|
|
|
|
# Install locally-built Python wheel dependencies
|
2020-06-11 18:04:23 -05:00
|
|
|
{{ install_python3_wheels(docker_snmp_whls.split(' ')) }}
|
2018-05-02 13:46:21 -05:00
|
|
|
{% endif %}
|
|
|
|
|
2020-05-14 12:23:37 -05:00
|
|
|
RUN python3 -m sonic_ax_impl install
|
2018-05-02 13:46:21 -05:00
|
|
|
|
|
|
|
# Clean up
|
2019-06-22 13:26:23 -05:00
|
|
|
RUN apt-get -y purge \
|
2020-05-17 06:26:50 -05:00
|
|
|
python3-dev \
|
2019-06-22 13:26:23 -05:00
|
|
|
gcc \
|
2020-05-17 06:26:50 -05:00
|
|
|
make && \
|
2019-06-22 13:26:23 -05:00
|
|
|
apt-get clean -y && \
|
|
|
|
apt-get autoclean -y && \
|
|
|
|
apt-get autoremove -y --purge && \
|
|
|
|
find / | grep -E "__pycache__" | xargs rm -rf && \
|
|
|
|
rm -rf /debs /python-wheels ~/.cache
|
2016-10-25 20:52:13 -05:00
|
|
|
|
2017-05-08 17:43:31 -05:00
|
|
|
COPY ["start.sh", "/usr/bin/"]
|
2020-12-28 13:51:58 -06:00
|
|
|
COPY ["snmp_yml_to_configdb.py", "/usr/bin/"]
|
2017-05-08 17:43:31 -05:00
|
|
|
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
|
2017-02-18 19:50:29 -06:00
|
|
|
COPY ["*.j2", "/usr/share/sonic/templates/"]
|
2019-10-22 16:41:12 -05:00
|
|
|
COPY ["files/supervisor-proc-exit-listener", "/usr/bin"]
|
|
|
|
COPY ["critical_processes", "/etc/supervisor"]
|
2016-10-25 20:52:13 -05:00
|
|
|
|
2018-05-02 13:46:21 -05:00
|
|
|
# Although exposing ports is not needed for host net mode, keep it for possible bridge mode
|
2016-10-25 20:52:13 -05:00
|
|
|
EXPOSE 161/udp 162/udp
|
|
|
|
|
2020-11-22 23:18:44 -06:00
|
|
|
ENTRYPOINT ["/usr/local/bin/supervisord"]
|