53443c5c71
With the move to RHEL/CentOS 8 we no longer have Python 2 in our images so there is no need for checking which Python version (2.x or 3.x) is used inside of containers. We also no longer have to support yum as a value for distro_package_manager. Partially-Implements: blueprint centos-rhel-8 Change-Id: Ie45cf3465fedddbde7856961527421883ba3d5c9
38 lines
1.0 KiB
Django/Jinja
38 lines
1.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block nova_ssh_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='nova', shell='/bin/bash') }}
|
|
|
|
{% set nova_ssh_packages = [
|
|
'openssh-server'
|
|
] %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
# NOTE(mgoddard): The centos:8 image contains a /run/nologin file, which
|
|
# prevents SSH access to it.
|
|
RUN rm -f /run/nologin
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
|
|
RUN mkdir -p /var/run/sshd \
|
|
&& chmod 0755 /var/run/sshd
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(nova_ssh_packages | customizable("packages")) }}
|
|
|
|
RUN sed -ri 's/session(\s+)required(\s+)pam_loginuid.so/session\1optional\2pam_loginuid.so/' /etc/pam.d/sshd
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block nova_ssh_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|