85b0de3df1
Add the same mechanism I developed for the SwSS service in #2845 to the syncd service. However, in order to cause the SwSS service to also exit and restart in this situation, I developed a docker-wait-any program which the SwSS service uses to wait for either the swss or syncd containers to exit.
41 lines
890 B
Django/Jinja
Executable File
41 lines
890 B
Django/Jinja
Executable File
FROM docker-config-engine-stretch
|
|
|
|
## Make apt-get non-interactive
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update
|
|
|
|
COPY \
|
|
{% for deb in docker_syncd_bfn_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor -%}
|
|
debs/
|
|
|
|
RUN apt-get install -y \
|
|
libxml2 \
|
|
libpcap-dev \
|
|
libusb-1.0-0-dev \
|
|
libcurl3 \
|
|
libcurl4-gnutls-dev \
|
|
libunwind8-dev \
|
|
libpython3.4 \
|
|
libc-ares2 \
|
|
libgoogle-perftools4
|
|
|
|
RUN dpkg -i \
|
|
{% for deb in docker_syncd_bfn_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor %}
|
|
|
|
COPY ["start.sh", "/usr/bin/"]
|
|
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
|
|
COPY ["files/supervisor-proc-exit-listener", "/usr/bin"]
|
|
COPY ["critical_processes", "/etc/supervisor/"]
|
|
|
|
## Clean up
|
|
RUN apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
|
|
RUN rm -rf /debs
|
|
|
|
ENTRYPOINT ["/usr/bin/supervisord"]
|
|
|