docker-services/tasks/requirements.yml
2022-08-05 20:59:55 +02:00

20 lines
356 B
YAML

---
- name: update APT Cache
apt:
update_cache: yes
cache_valid_time: 3600
- name: pre-requirements install
apt:
name:
- apt-transport-https
- ca-certificates
- curl
- gnupg-agent
- software-properties-common
- python3-pip
- virtualenv
- python3-setuptools
- gnupg2
state: present