mirror of
https://github.com/idealista/cookiecutter-ansible-role.git
synced 2024-11-19 19:06:12 +01:00
13 lines
363 B
Django/Jinja
13 lines
363 B
Django/Jinja
# Molecule managed
|
|
|
|
{% raw %}{% if item.registry is defined %}
|
|
FROM {{ item.registry.url }}/{{ item.image }}
|
|
{% else %}
|
|
FROM {{ item.image }}
|
|
{% endif %}
|
|
|
|
# install minimal packages for debian slim images
|
|
RUN apt-get update && \
|
|
apt-get install -y python3 sudo bash ca-certificates iproute2 systemd systemd-sysv python3-pip && \
|
|
apt-get clean{% endraw %}
|