d30fbf1d72
- Extending SONiC building infrastructure to provide users with greater flexibility, by allowing them to elect a routing-stack different than the default one (quagga). The desired routing-stack will be defined in rules/config file. - As part of these changes I'm adding support for Free-Range-Routing (FRR) stack. Quagga will continue to be the default routing-stack. Signed-off-by: Rodny Molina <rodny@linkedin.com>
32 lines
753 B
Django/Jinja
32 lines
753 B
Django/Jinja
FROM docker-fpm-quagga
|
|
|
|
## Make apt-get non-interactive
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y supervisor
|
|
|
|
COPY \
|
|
{% for deb in docker_fpm_gobgp_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor -%}
|
|
debs/
|
|
|
|
RUN dpkg -i \
|
|
{% for deb in docker_fpm_gobgp_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor %}
|
|
|
|
## Clean up
|
|
RUN apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
|
|
RUN rm -rf /debs
|
|
|
|
COPY ["*.j2", "/usr/share/sonic/templates/"]
|
|
COPY ["start.sh", "config.sh", "/usr/bin/"]
|
|
COPY ["daemons", "/etc/quagga/"]
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
ENTRYPOINT /usr/bin/config.sh \
|
|
&& /usr/bin/start.sh \
|
|
&& /usr/bin/supervisord \
|
|
&& /bin/bash
|