9dea816532
* Fix libsnmp-base compilation failure * Convert docker-snmp-sv2 to buster * Define install_python3_wheels * Address review comments * Address review comments * Advance snmpagent submodule * Bump net-snmp to the Buster version * Revert "Fix libsnmp-base compilation failure" * use azure storage url
23 lines
697 B
Django/Jinja
23 lines
697 B
Django/Jinja
{% macro install_debian_packages(packages) -%}
|
|
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; }; \
|
|
{%- for deb in packages %}
|
|
dpkg_apt /debs/{{ deb }} {%- if not loop.last %} && \ {%- endif %}
|
|
{%- endfor %}
|
|
{%- endmacro %}
|
|
|
|
{% macro install_python_wheels(packages) -%}
|
|
RUN cd /python-wheels/ && pip install {{ packages | join(' ') }}
|
|
{%- endmacro %}
|
|
|
|
{% macro install_python3_wheels(packages) -%}
|
|
RUN cd /python-wheels/ && pip3 install {{ packages | join(' ') }}
|
|
{%- endmacro %}
|
|
|
|
{% macro copy_files(prefix, files, dest) -%}
|
|
COPY \
|
|
{%- for file in files %}
|
|
{{ prefix }}/{{ file }} \
|
|
{%- endfor %}
|
|
{{ dest }}
|
|
{%- endmacro %}
|