beacon-node-builds: fix apt-get stdout redirection

The & character breaks the command in /bin/sh shell.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-06-14 16:09:46 +02:00
parent 133a30c1b6
commit f24c714b49
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020

View File

@ -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/*