dbdf927d39
Add Qinling Dockerfile , Qinling is an OpenStack project to provide "Function as a service". This project aims to provide a platform to support serverless functions. Change-Id: Idebf5c8756a0d0225adcce29b45a399120bb5eb6 Implements: blueprint qinling-support
17 lines
436 B
Django/Jinja
17 lines
436 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}qinling-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block qinling_engine_header %}{% endblock %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
|
|
{% block qinling_engine_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER qinling
|