ad1b581111
CMD is not longer a file name but a command that needs to be executed, thus /bin/bash is not enough for the entrypoint and -c is needed. Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
27 lines
628 B
Django/Jinja
27 lines
628 B
Django/Jinja
FROM docker-config-engine
|
|
|
|
RUN apt-get update && apt-get install -f -y libdbus-1-3 libdaemon0 libjansson4
|
|
|
|
COPY \
|
|
{% for deb in docker_teamd_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor -%}
|
|
debs/
|
|
|
|
RUN dpkg -i \
|
|
{% for deb in docker_teamd_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor %}
|
|
|
|
COPY ["start.sh", "config.sh", "/usr/bin/"]
|
|
COPY ["teamd.j2", "/usr/share/sonic/templates/"]
|
|
|
|
## Make apt-get non-interactive
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get clean -y; apt-get autoclean -y; apt-get autoremove -y
|
|
RUN rm -rf /debs
|
|
|
|
ENTRYPOINT ["/bin/bash", "-c"]
|
|
CMD ["/usr/bin/config.sh && /usr/bin/start.sh"]
|