From 9641ef5c83a6220f7963de166e8fdf3a67cdddc0 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Fri, 8 Dec 2023 17:32:56 -0500 Subject: [PATCH] Fix missing -y in apt get install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 017e1e3d68..238d21c095 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN \ RUN \ for n in $(seq 1 5); do apt-get update -y && sleep 5 && break; done \ && \ - apt-get install --no-install-recommends libxxhash0 software-properties-common \ + apt-get install --no-install-recommends -y libxxhash0 software-properties-common \ && \ for n in $(seq 1 5); do add-apt-repository -y ppa:ubuntu-toolchain-r/test && sleep 5 && break; done \ && \