kolla/docker/nova/nova-novncproxy/Dockerfile.j2
Marcin Juszkiewicz 1749da2fbf docker: drop binary parts
Big patch drops all mentions of binary images support. Suggestions are
welcome how to split it into parts or handle better.

Change-Id: I5d5a46c6ce7734ceb8b844e17b43e359d7cac6e3
2022-04-09 17:44:26 +02:00

20 lines
514 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }}
{% block labels %}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
{% block nova_novncproxy_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
{% set nova_novncproxy_packages = [
'novnc'
] %}
{{ macros.install_packages(nova_novncproxy_packages | customizable("packages")) }}
{% block nova_novncproxy_footer %}{% endblock %}
{% block footer %}{% endblock %}
USER nova