ansible/debian-10/Dockerfile
Tobias Trabelsi 6f197f959a
Some checks failed
continuous-integration/drone/push Build is failing
minor improvements and architecture adaptations
2021-01-31 00:22:32 +01:00

23 lines
524 B
Docker

FROM debian:10
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 \
python \
ca-certificates \
&& 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
CMD ["ansible-playbook", "--help"]