We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the ansible-playbook-wrapper script to install requirements and run a playbook, requirements that are downloaded via git will fail because the apt-get install -y git command (https://github.com/William-Yeh/docker-ansible/blob/master/debian9-onbuild/ansible-playbook-wrapper#L26) fails:
apt-get install -y git
build 21-Nov-2017 09:12:16 Reading package lists... build 21-Nov-2017 09:12:16 Building dependency tree... build 21-Nov-2017 09:12:16 Reading state information... error 21-Nov-2017 09:12:16 E: Unable to locate package git
This, in turn, is because the Dockerfile removes the APT packages information: https://github.com/William-Yeh/docker-ansible/blob/master/debian9-onbuild/Dockerfile#L33
A possible fix would be to run apt-get update before the apt-get install.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the ansible-playbook-wrapper script to install requirements and run a playbook, requirements that are downloaded via git will fail because the
apt-get install -y git
command (https://github.com/William-Yeh/docker-ansible/blob/master/debian9-onbuild/ansible-playbook-wrapper#L26) fails:This, in turn, is because the Dockerfile removes the APT packages information: https://github.com/William-Yeh/docker-ansible/blob/master/debian9-onbuild/Dockerfile#L33
A possible fix would be to run apt-get update before the apt-get install.
The text was updated successfully, but these errors were encountered: