From f24c714b490609ac627f442737e8d530932cb569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 14 Jun 2021 16:09:46 +0200 Subject: [PATCH] beacon-node-builds: fix apt-get stdout redirection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The & character breaks the command in /bin/sh shell. Signed-off-by: Jakub SokoĊ‚owski --- ansible/roles/beacon-node-builds/templates/Dockerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/beacon-node-builds/templates/Dockerfile.j2 b/ansible/roles/beacon-node-builds/templates/Dockerfile.j2 index 682d9f1..9f43678 100644 --- a/ansible/roles/beacon-node-builds/templates/Dockerfile.j2 +++ b/ansible/roles/beacon-node-builds/templates/Dockerfile.j2 @@ -3,7 +3,7 @@ FROM debian:bullseye-slim ARG COMMIT RUN apt-get -qq update \ - && apt-get -qq -y install libpcre3-dev &>/dev/null \ + && apt-get -qq -y install libpcre3-dev 1>/dev/null \ && apt-get -qq clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*