2019-06-22 13:26:23 -05:00
|
|
|
{% from "dockers/dockerfile-macros.j2" import install_debian_packages, install_python_wheels, copy_files %}
|
2019-02-06 23:28:07 -06:00
|
|
|
FROM docker-config-engine-stretch
|
2017-11-14 16:40:15 -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
|
|
|
|
2017-11-14 16:40:15 -06:00
|
|
|
# Make apt-get non-interactive
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Update apt's cache of available packages
|
|
|
|
RUN apt-get update
|
|
|
|
|
|
|
|
{% if docker_router_advertiser_debs.strip() -%}
|
|
|
|
# Copy built Debian packages
|
2019-06-22 13:26:23 -05:00
|
|
|
{{ copy_files("debs/", docker_router_advertiser_debs.split(' '), "/debs/") }}
|
2017-11-14 16:40:15 -06:00
|
|
|
|
|
|
|
# Install built Debian packages and implicitly install their dependencies
|
2019-06-22 13:26:23 -05:00
|
|
|
{{ install_debian_packages(docker_router_advertiser_debs.split(' ')) }}
|
2017-11-14 16:40:15 -06:00
|
|
|
{%- endif %}
|
|
|
|
|
|
|
|
# Clean up
|
2019-06-22 13:26:23 -05:00
|
|
|
RUN apt-get clean -y && \
|
|
|
|
apt-get autoclean -y && \
|
|
|
|
apt-get autoremove -y && \
|
|
|
|
rm -rf /debs
|
2017-11-14 16:40:15 -06:00
|
|
|
|
|
|
|
COPY ["start.sh", "/usr/bin/"]
|
|
|
|
COPY ["docker-router-advertiser.supervisord.conf", "/etc/supervisor/conf.d/"]
|
2019-03-02 17:45:43 -06:00
|
|
|
COPY ["radvd.conf.j2", "wait_for_intf.sh.j2", "/usr/share/sonic/templates/"]
|
2017-11-14 16:40:15 -06:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/supervisord"]
|