From 56c969bd8898aa8597d98553e0c84625bf2c6b4d Mon Sep 17 00:00:00 2001 From: James Jones Date: Fri, 18 Nov 2022 18:27:26 -0500 Subject: [PATCH] Adding some ansible settings and the package with the su command --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fb04018..6a3d42d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,13 @@ FROM quay.io/podman/stable:latest # Adding on the docker alias, docker-compose and other useful stuff -RUN dnf install -y podman-docker buildah skopeo docker-compose +RUN dnf install -y podman-docker buildah skopeo docker-compose util-linux ansible-core + +# Adding some Ansible Key and Timeout setting +ENV ANSIBLE_HOST_KEY_CHECKING=False +ENV ANSIBLE_TIMEOUT=60 +RUN printf "\nStrictHostKeyChecking no\n" >> /etc/ssh/ssh_config + # Remove the Emulate Docker CLI using podman messages RUN touch /etc/containers/nodocker \ No newline at end of file