Skip to content

Commit 9b65050

Browse files
committed
Consistency changes
1 parent 6a9e141 commit 9b65050

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

Dockerfile

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:18.04
22
MAINTAINER Mischa ter Smitten <[email protected]>
33

4+
ENV LANG C.UTF-8
5+
ENV LC_ALL C.UTF-8
6+
47
# python
58
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 && \
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 -
912
RUN rm -rf $HOME/.cache
1013

1114
# 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 && \
1316
apt-get clean
14-
RUN pip install ansible==2.9.15
17+
RUN pip3 install ansible==2.10.7
1518
RUN rm -rf $HOME/.cache
1619

1720
# provision

meta/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ galaxy_info:
77
company: Oefenweb.nl B.V.
88
description: Set up (the latest version of) virtualenv(wrapper) 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:

molecule/default/collections.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
collections:
3+
- name: community.docker
4+
version: '>=1.2.0,<2'
5+
- name: community.general
6+
version: '>=2,<3'

molecule/default/molecule.yml

+3-1
Original file line numberDiff line numberDiff 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
1416
provisioner:

requirements.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# requirements file
2+
---
3+
collections: []

0 commit comments

Comments
 (0)