File tree Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:16 .04
1+ FROM ubuntu:18 .04
22MAINTAINER Mischa ter Smitten <
[email protected] >
33
4+ ENV LANG C.UTF-8
5+ ENV LC_ALL C.UTF-8
6+
47# python
58RUN apt-get update && \
6- DEBIAN_FRONTEND=noninteractive apt-get install -y python -minimal python -dev curl && \
9+ DEBIAN_FRONTEND=noninteractive apt-get install -y python3 -minimal python3 -dev curl && \
710 apt-get clean
8- RUN curl -sL https://bootstrap.pypa.io/pip/2.7 /get-pip.py | python -
11+ RUN curl -sL https://bootstrap.pypa.io/pip/3.6 /get-pip.py | python3 -
912RUN rm -rf $HOME/.cache
1013
1114# ansible
12- RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc libffi-dev libssl-dev net-tools iproute2 ethtool && \
15+ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3-apt && \
1316 apt-get clean
14- RUN pip install ansible==2.9.15
17+ RUN pip3 install ansible==2.10.7
1518RUN rm -rf $HOME/.cache
1619
1720# provision
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ galaxy_info:
77 company : Oefenweb.nl B.V.
88 description : Set up tinyproxy in Debian-like systems
99 license : MIT
10- min_ansible_version : 2.9 .0
10+ min_ansible_version : 2.10 .0
1111 platforms :
1212 - name : Ubuntu
1313 versions :
Original file line number Diff line number Diff line change 1+ ---
2+ collections :
3+ - name : community.docker
4+ version : ' >=1.2.0,<2'
5+ - name : community.general
6+ version : ' >=2,<3'
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ platforms:
88 image : " geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu1604}-ansible:latest"
99 command : ${MOLECULE_DOCKER_COMMAND:-""}
1010 volumes :
11- - /sys/fs/cgroup:/sys/fs/cgroup:ro
11+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
12+ - /var/lib/containerd
13+ cgroupns_mode : host
1214 privileged : true
1315 pre_build_image : true
1416provisioner :
Original file line number Diff line number Diff line change 1+ # requirements file
2+ ---
3+ collections : []
You can’t perform that action at this time.
0 commit comments