34 lines
792 B
Docker
34 lines
792 B
Docker
|
FROM docker-config-engine-stretch
|
||
|
|
||
|
ARG docker_container_name
|
||
|
RUN [ -f /etc/rsyslog.conf ] && sed -ri "s/%syslogtag%/$docker_container_name#%syslogtag%/;" /etc/rsyslog.conf
|
||
|
|
||
|
## Make apt-get non-interactive
|
||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||
|
|
||
|
RUN apt-get update
|
||
|
|
||
|
COPY \
|
||
|
{% for deb in docker_syncd_invm_debs.split(' ') -%}
|
||
|
debs/{{ deb }}{{' '}}
|
||
|
{%- endfor -%}
|
||
|
debs/
|
||
|
|
||
|
# Needed for Innovium Debug Shell
|
||
|
RUN apt-get install -y net-tools
|
||
|
RUN apt-get install -y libpython2.7
|
||
|
RUN apt-get install -y libjansson4
|
||
|
|
||
|
RUN dpkg -i \
|
||
|
{% for deb in docker_syncd_invm_debs.split(' ') -%}
|
||
|
debs/{{ deb }}{{' '}}
|
||
|
{%- endfor %}
|
||
|
|
||
|
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"]
|