2019-06-22 13:26:23 -05:00
|
|
|
{% from "dockers/dockerfile-macros.j2" import install_debian_packages, install_python_wheels, copy_files %}
|
2019-04-17 12:59:58 -05:00
|
|
|
FROM docker-config-engine-stretch
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2018-06-25 12:48:42 -05:00
|
|
|
ARG docker_container_name
|
2018-08-13 00:23:58 -05:00
|
|
|
RUN [ -f /etc/rsyslog.conf ] && sed -ri "s/%syslogtag%/$docker_container_name#%syslogtag%/;" /etc/rsyslog.conf
|
2018-06-25 12:48:42 -05:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
# Make apt-get non-interactive
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
2017-01-19 14:19:21 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
# Update apt's cache of available packages
|
|
|
|
RUN apt-get update
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
{% if docker_lldp_sv2_debs.strip() -%}
|
|
|
|
# Copy locally-built Debian package dependencies
|
2019-06-22 13:26:23 -05:00
|
|
|
{{ copy_files("debs/", docker_lldp_sv2_debs.split(' '), "/debs/") }}
|
2017-02-16 23:48:49 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
# Install locally-built Debian packages and implicitly install their dependencies
|
2019-06-22 13:26:23 -05:00
|
|
|
{{ install_debian_packages(docker_lldp_sv2_debs.split(' ')) }}
|
2018-03-02 18:46:22 -06:00
|
|
|
{%- endif %}
|
2017-01-19 22:56:26 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
{% if docker_lldp_sv2_whls.strip() -%}
|
|
|
|
# Copy locally-built Python wheel dependencies
|
2019-06-22 13:26:23 -05:00
|
|
|
{{ copy_files("python-wheels/", docker_lldp_sv2_whls.split(' '), "/python-wheels/") }}
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
# Install locally-built Python wheel dependencies
|
2019-06-22 13:26:23 -05:00
|
|
|
{{ install_python_wheels(docker_lldp_sv2_whls.split(' ')) }}
|
2018-03-02 18:46:22 -06:00
|
|
|
{% endif %}
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
# Clean up
|
2019-06-22 13:26:23 -05:00
|
|
|
RUN apt-get purge -y python-pip && \
|
|
|
|
apt-get clean -y && \
|
|
|
|
apt-get autoclean -y && \
|
|
|
|
apt-get autoremove -y && \
|
|
|
|
rm -rf /debs \
|
|
|
|
/python-wheels \
|
|
|
|
~/.cache
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2017-05-08 17:43:31 -05:00
|
|
|
COPY ["start.sh", "/usr/bin/"]
|
|
|
|
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
|
2017-02-18 19:50:29 -06:00
|
|
|
COPY ["lldpd.conf.j2", "/usr/share/sonic/templates/"]
|
2017-01-19 22:56:26 -06:00
|
|
|
COPY ["lldpd", "/etc/default/"]
|
2018-03-02 18:46:22 -06:00
|
|
|
COPY ["lldpmgrd", "/usr/bin/"]
|
2019-11-06 13:02:57 -06:00
|
|
|
COPY ["files/supervisor-proc-exit-listener", "/usr/bin"]
|
|
|
|
COPY ["critical_processes", "/etc/supervisor"]
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2017-05-08 17:43:31 -05:00
|
|
|
ENTRYPOINT ["/usr/bin/supervisord"]
|