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
|
|
|
|
{%- for deb in docker_lldp_sv2_debs.split(' ') %}
|
|
|
|
COPY debs/{{ deb }} /debs/
|
|
|
|
{%- endfor %}
|
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
|
|
|
|
{%- for deb in docker_lldp_sv2_debs.split(' ') %}
|
|
|
|
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; }; dpkg_apt /debs/{{ deb }}
|
|
|
|
{%- endfor %}
|
|
|
|
{%- 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
|
|
|
|
{%- for whl in docker_lldp_sv2_whls.split(' ') %}
|
|
|
|
COPY python-wheels/{{ whl }} /python-wheels/
|
|
|
|
{%- endfor %}
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2018-03-02 18:46:22 -06:00
|
|
|
# Install locally-built Python wheel dependencies
|
|
|
|
{%- for whl in docker_lldp_sv2_whls.split(' ') %}
|
|
|
|
RUN pip install /python-wheels/{{ whl }}
|
2016-12-23 17:22:06 -06:00
|
|
|
{%- endfor %}
|
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-04-29 19:21:24 -05:00
|
|
|
RUN apt-get purge -y python-pip
|
2018-03-02 18:46:22 -06:00
|
|
|
RUN apt-get clean -y
|
|
|
|
RUN apt-get autoclean -y
|
|
|
|
RUN apt-get autoremove -y
|
|
|
|
RUN 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/"]
|
2016-12-05 13:12:19 -06:00
|
|
|
|
2017-05-08 17:43:31 -05:00
|
|
|
ENTRYPOINT ["/usr/bin/supervisord"]
|