mg
169abbedff
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#363 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
13 lines
384 B
Text
13 lines
384 B
Text
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 /
|