[FIX] debian docker: add setuptools dependency

This commit is contained in:
Jannik Beyerstedt 2019-11-11 18:15:33 +01:00
parent 4404d07fe0
commit d48064a7e3

View file

@ -52,7 +52,6 @@
update_cache: yes
cache_valid_time: 3600
# Install latest release of docker-compose (using pip3)
# docker only provides pre-compiled binaries for x86_64, but not for armhf/ arm64!
# but ansible needs the python package anyway
@ -88,8 +87,12 @@
- name: docker-compose - Install requirements
become: yes
apt:
name: python3-pip
name: "{{ packages }}"
state: present
vars:
packages:
- python3-pip
- python3-setuptools
- name: docker-compose - Install using pip3
become: yes
pip: