added debian 9 and 10 and removed 7

This commit is contained in:
2020-10-31 17:24:36 +01:00
parent f7b497bfc4
commit c83c16211d
5 changed files with 82 additions and 25 deletions

21
debian-9/Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM debian:9
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 \
ansible \
&& 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
CMD ["ansible-playbook", "--help"]