particle-os-cli/template/templates/modules/containerfile/containerfile.j2
Gerald Pinder 910e0434b6
refactor: Move templates to their own crate (#83)
This PR logically separates out parts of the code to their own crates. This will be useful for future Tauri App development.
2024-02-25 14:45:33 -06:00

10 lines
297 B
Django/Jinja

{%- if let Some(containerfiles) = module.get_containerfile_list() %}
{%- for c in containerfiles %}
{{ self::print_containerfile(c) }}
{%- endfor %}
{%- endif %}
{%- if let Some(snippets) = module.get_containerfile_snippets() %}
{%- for s in snippets %}
{{ s }}
{%- endfor %}
{%- endif %}