ansible/ubuntu-22.04/Dockerfile
Tobias Trabelsi f15e77fb88
Some checks reported errors
continuous-integration/drone/push Build was killed
fixed ubuntu 22.04 python apt package name
2022-04-20 19:42:30 +02:00

17 lines
478 B
Docker

FROM ubuntu:22.04
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
software-properties-common \
apt-utils \
ansible \
python3-apt \
git-core \
openssh-client \
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
CMD ["ansible-playbook", "--help"]