2023-03-17 10:34:15 +01:00
|
|
|
FROM {{ nextcloud_container_image }}
|
|
|
|
|
2023-12-03 11:33:04 +01:00
|
|
|
{% if nextcloud_container_image_customizations_packages_to_install | length > 0 %}
|
|
|
|
RUN apt -y update && apt -y install {{ nextcloud_container_image_customizations_packages_to_install | join(' ') }} && rm -rf /var/lib/apt/lists/*
|
2023-03-17 10:34:15 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{{ nextcloud_container_image_customizations_dockerfile_body_custom }}
|