From 35c80963b34d4fec33d3cdd954a60dc3d05a1486 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sat, 31 Oct 2020 19:26:14 +0100 Subject: [PATCH] missed a && --- centos-8/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centos-8/Dockerfile b/centos-8/Dockerfile index 390d20d..d949bbe 100644 --- a/centos-8/Dockerfile +++ b/centos-8/Dockerfile @@ -6,6 +6,6 @@ RUN dnf -y install python3-pip &&\ && curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \ && chmod +rx /usr/local/bin/goss \ && touch ~/.netrc && chmod og-rw ~/.netrc \ - pip3 install firewall + && pip3 install firewall CMD ["ansible-playbook", "--help"]