-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from nl2go/feature/ansible-2-8
Increase ansible version to 2.8
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM alpine:3.10.3 | |
|
||
LABEL MAINTAINER=<[email protected]> | ||
|
||
ARG ANSIBLE_VERSION=2.7.* | ||
ARG ANSIBLE_VERSION=2.8.* | ||
|
||
RUN apk --update --no-cache add \ | ||
sudo \ | ||
|
@@ -23,7 +23,8 @@ RUN ln -fsn /usr/bin/pip3 /usr/bin/pip | |
|
||
RUN pip install \ | ||
ansible-filter==1.1.1 \ | ||
netaddr==0.7.19 | ||
netaddr==0.7.19 \ | ||
pymongo | ||
|
||
COPY .docker/ / | ||
COPY ansible_project_init/ /opt/ansible_project_init/ansible_project_init | ||
|