d038fd228a
Signed-off-by: Andriy Kokhan <akokhan@barefootnetworks.com>
39 lines
785 B
Django/Jinja
Executable File
39 lines
785 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/"]
|
|
|
|
## Clean up
|
|
RUN apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
|
|
RUN rm -rf /debs
|
|
|
|
ENTRYPOINT ["/usr/bin/supervisord"]
|
|
|