22 lines
528 B
Docker
22 lines
528 B
Docker
FROM debian:8
|
|
|
|
RUN apt-get -q update \
|
|
&& apt-get -yq install --no-install-recommends \
|
|
build-essential \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pip \
|
|
git \
|
|
apt-utils \
|
|
curl \
|
|
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
|
|
&& chmod +rx /usr/local/bin/goss \
|
|
&& apt-get clean \
|
|
&& pip3 install --upgrade pip
|
|
|
|
RUN pip3 install ansible
|
|
|
|
CMD ["ansible-playbook", "--help"]
|