Saltstack Official Nginx Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. FROM simplyadrian/allsalt:{{ image_tag }}
  2. {% if 'debian' in image_tag or 'ubuntu' in image_tag -%}
  3. RUN apt-get update && \
  4. apt-get install -y python-pip
  5. {% endif %}
  6. RUN pip install pytest && \
  7. sed -i "s/#master: salt/master: localhost/g" /etc/salt/minion
  8. ADD tests/srv /srv
  9. ADD {{ formula_name }} /srv/salt/{{ formula_name }}
  10. WORKDIR /srv/salt