You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
453 B
15 lines
453 B
{% extends parent_template %}
|
|
|
|
{% block opendaylight_install %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set opendaylight_packages = ['java-1.8.0-openjdk'] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set opendaylight_packages = ['openjdk-8-jre'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(opendaylight_packages | customizable("packages")) }}
|
|
|
|
ADD opendaylight-archive /opendaylight
|
|
RUN ln -s /opendaylight/* /opt/opendaylight
|
|
{% endblock %}
|