File tree 5 files changed +21
-7
lines changed
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
2
2
MAINTAINER Mischa ter Smitten <
[email protected] >
3
3
4
+ ENV LANG C.UTF-8
5
+ ENV LC_ALL C.UTF-8
6
+
4
7
# python
5
8
RUN 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 && \
7
10
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 -
9
12
RUN rm -rf $HOME/.cache
10
13
11
14
# ansible
12
- RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc libffi-dev libssl-dev && \
15
+ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3-apt && \
13
16
apt-get clean
14
- RUN pip install ansible==2.9.15
17
+ RUN pip3 install ansible==2.10.7
15
18
RUN rm -rf $HOME/.cache
16
19
17
20
# provision
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ galaxy_info:
7
7
company : Oefenweb.nl B.V.
8
8
description : Set up (the latest version of) virtualenv(wrapper) in Debian-like systems
9
9
license : MIT
10
- min_ansible_version : 2.9 .0
10
+ min_ansible_version : 2.10 .0
11
11
platforms :
12
12
- name : Ubuntu
13
13
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:
8
8
image : " geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu1604}-ansible:latest"
9
9
command : ${MOLECULE_DOCKER_COMMAND:-""}
10
10
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
12
14
privileged : true
13
15
pre_build_image : true
14
16
provisioner :
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