31259fa595
centos based images have wrong label info, these changes fix own image's name and build-date. Change-Id: I1d13f8f386c8db12b5fbe5f8ecbbf9e3fbb4ba1c Closes-Bug: #1680341
20 lines
571 B
Django/Jinja
20 lines
571 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
ENV KUBERNETES_VERSION=v1.5.4
|
|
|
|
{% if base_arch != 'x86_64' %}
|
|
|
|
RUN echo 'Kubernetes images not yet available for {{ base_arch }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
|
|
ENV KUBERNETES_DOWNLOAD_ROOT=https://storage.googleapis.com/kubernetes-release/release/${KUBERNETES_VERSION}/bin/linux/amd64
|
|
|
|
{% block kube_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% block kube_base_footer %}{% endblock %}
|