blob: 07116b6b9ba436da46e557bde7934eb18745ad34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM ubuntu:bionic
ENV container=docker
RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential libffi-dev \
libssl-dev python-dev python-minimal python-pip python-setuptools \
python-virtualenv systemd && \
rm -rf /var/lib/apt/lists/*
RUN pip install enum34 ipaddress wheel && \
pip install ansible ansible-lint
COPY .ansible-lint /
|