mirror of
https://github.com/mrlesmithjr/ansible-manage-lvm.git
synced 2025-12-13 21:34:52 +03:00
14 lines
376 B
Docker
14 lines
376 B
Docker
FROM ubuntu:xenial
|
|
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 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install enum34 ipaddress wheel && \
|
|
pip install ansible ansible-lint
|
|
|
|
COPY .ansible-lint /
|